soundgasm change background

darkmode color change for soundgasm

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

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

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         soundgasm change background
// @namespace    AnimeRaupe
// @version      1.6
// @description  darkmode color change for soundgasm
// @author       AnimeRaupe
// @match        ://*.soundgasm.net/*
// @grant        none
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function(){
    'use strict';

    const styles1 = document.createElement('style');
    styles1.type = 'text/css';
    styles1.innerHTML = `
        body{
            background-color: #000000 !important;
            color: #a655d9 !important;
        }
    `;

    const styles2 = document.createElement('style');
    styles2.type = 'text/css';
    styles2.innerHTML = `
        .jp-audio, .jp-audio-stream, .jp-video{
            background-color: #000000 !important;
            color: #a655d9 !important;
        }
    `;

    const styles3 = document.createElement('style');
    styles3.type = 'text/css';
    styles3.innerHTML = `
        .sound-details{
            background-color: #000000 !important;
        }
    `;

    const styles4 = document.createElement('style');
    styles4.type = 'text/css';
    styles4.innerHTML = `
        a:-webkit-any-link{
            color: #00dcff !important;
        }
    `;

    document.body.appendChild(styles1);
    document.body.appendChild(styles2);
    document.body.appendChild(styles3);
    document.body.appendChild(styles4);
})();