Autoselect Creative Commons on Incompetech

Automatically selects the Creative Commons License option on incompetech.com.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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;
        }
    }
})();