Deep sky blue

Adds new option to wrap in Deep sky blue

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