Deep sky blue

Adds new option to wrap in Deep sky blue

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Deep sky blue
// @namespace    https://greasyfork.org/users/150647
// @version      1.0
// @description  Adds new option to wrap in Deep sky blue
// @author       A Meaty Alt
// @include      /fairview\.deadfrontier\.com\/onlinezombiemmo\/index\.php\?action=pm;sa=send/
// @include      /fairview\.deadfrontier\.com\/onlinezombiemmo\/index\.php\?action=post2/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const selects = document.querySelectorAll("select");
    const select = selects[selects.length-1];
    const option = document.createElement("option");
    option.value = "#00ccff";
    option.innerHTML = "Deep sky blue";
    select.appendChild(option);
})();