// ==UserScript== // @name Zelenka Guru Green // @namespace https://zelenka.guru/ // @version 1.0 // @description none // @author none // @match https://zelenka.guru/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var style = document.createElement('style'); style.innerHTML = '::selection { background-color: #2BAD72; color: white; }'; document.head.appendChild(style); })();