您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically selects the Creative Commons License option on incompetech.com.
// ==UserScript== // @name Autoselect Creative Commons on Incompetech // @namespace Autoselect Creative Commons on Incompetech // @version v1.0.0.4 // @license GNU General Public License v3.0 // @description Automatically selects the Creative Commons License option on incompetech.com. // @description:es Selecciona automáticamente la opción Licencia Creative Commons en incompetech.com. // @description:fr Sélectionne automatiquement l'option Creative Commons License sur incompetech.com. // @description:de Wählt automatisch die Option „Creative Commons-Lizenz“ auf incompetech.com aus. // @author Mr. Mole (MoleTech) // @match *://incompetech.com/music/royalty-free/licenses/ // @icon https://www.google.com/s2/favicons?sz=64&domain=incompetech.com // @grant none // ==/UserScript== (function() { 'use strict'; var i = 0; window.onload = function(){ if (i == 0) { ChangeDisplay('cc'); i + 1; } } })();