Subsplash Notes Dark Mode

Change SubSplash notes into Dark Mode

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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


    

})();