Greasy Fork 支持简体中文。

SoundCloud Dark Mode

Change SoundCloud background to black

// ==UserScript==
// @name         SoundCloud Dark Mode
// @namespace    http://tampermonkey.net/
// @version      1.5
// @description  Change SoundCloud background to black
// @author       MARSE
// @license      marse
// @match        *://soundcloud.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Add custom CSS to change background color and text color
    var customCSS = `
        body {
            background-color: #000000 !important;
        }
        * {
            color: #FFFFFF !important;
            background-color: transparent !important;
        }
        .button, .timestamp, .playbackTimeline__progressBar, .someOtherClass { /* Add more specific selectors if needed */
            background-color: #FFFFFF !important;
        }
        .playControls__inner { /* Added line to make the bottom bar not transparent */
            background-color: #000000 !important;
        }
    `;

    var styleElement = document.createElement("style");
    styleElement.type = "text/css";
    styleElement.appendChild(document.createTextNode(customCSS));
    document.head.appendChild(styleElement);
})();