Greasy Fork is available in English.

Subsplash Notes Dark Mode

Change SubSplash notes into Dark Mode

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         Subsplash Notes Dark Mode
// @namespace    https://greasyfork.org/en/users/119330-edward-sluder
// @version      0.3
// @description  Change SubSplash notes into Dark Mode
// @author       Edward Sluder
// @match        https://notes.subsplash.com/fill-in/view?page=*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=subsplash.com
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    console.log("still working");


    // Create our own styleSheet
    var sheet = (function() {
        // Create the <style> tag
        var style = document.createElement("style");

        // WebKit hack :(
        style.appendChild(document.createTextNode(""));

        // Add the <style> element to the page
        document.head.appendChild(style);

        return style.sheet;
    })();

    // Add our style rules.
    sheet.insertRule( 'body { background-color: black }' );
    sheet.insertRule( 'body { color: #aeaeae }' );
    sheet.insertRule( '.notes ng-scope {background-color:black }' );
    sheet.insertRule( 'div.info__title.ng-binding {color: white}' );


    

})();