SoundCloud DeepDark

SoundCloud Dark Theme

Cos'è SoundCloud DeepDark?

SoundCloud DeepDark è un'estensione di Chrome sviluppata da motive, e la sua funzione principale è "SoundCloud Dark Theme".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione SoundCloud DeepDark

Scarica i file di estensione SoundCloud DeepDark in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Google Chrome extension for SOUNDCLOUD

The extension adds a dark theme to the soundcloud, not provided by the developers of the project. Save eyes at night and allows the site to look aesthetically pleasing.

The product is open source, you can find the code at https://github.com/sx-motive/soundcloud-deepdark

Report an error or ask a question to the author
Software / frontend developer - Denis Kunitsyn - https://t.me/sxmotive                    

Informazioni di Base sull'Estensione

Nome SoundCloud DeepDark SoundCloud DeepDark
ID edooflagimepjnndabmcdlahbfpagjcl
URL Ufficiale https://chromewebstore.google.com/detail/soundcloud-deepdark/edooflagimepjnndabmcdlahbfpagjcl
Descrizione SoundCloud Dark Theme
Dimensione del File 14.48 KB
Conteggio Installazioni 385
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-11-06
Data di Pubblicazione 2021-11-06
Valutazione 3.75/5 Totale 4 Valutazioni
Sviluppatore motive
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sx-motive/soundcloud-deepdark
URL della Pagina di Aiuto https://github.com/sx-motive/soundcloud-deepdark
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SoundCloud DeepDark",
    "description": "SoundCloud Dark Theme",
    "version": "1.0.1",
    "permissions": [],
    "icons": {
        "128": "logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "background.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "SoundCloud DeepDark",
        "default_icon": "logo.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "dark.css"
    ]
}