Material Design - Custom Dark Mode

Load custom css to set dark mode for some websites.

Cos'è Material Design - Custom Dark Mode?

Material Design - Custom Dark Mode è un'estensione di Chrome sviluppata da arnoutpullen, e la sua funzione principale è "Load custom css to set dark mode for some websites.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Material Design - Custom Dark Mode

Scarica i file di estensione Material Design - Custom Dark Mode 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

                        Custom dark mode for websites.

Included websites:
- tweakers.net
- 9gag.com

Todo:
- google.com / google.nl
- toggle darkmode for current site
- add custom css to current page                    

Informazioni di Base sull'Estensione

Nome Material Design - Custom Dark Mode Material Design - Custom Dark Mode
ID gbenagmjagpjjpoeaigbmggjjmfieefn
URL Ufficiale https://chromewebstore.google.com/detail/material-design-custom-da/gbenagmjagpjjpoeaigbmggjjmfieefn
Descrizione Load custom css to set dark mode for some websites.
Dimensione del File 1.24 MB
Conteggio Installazioni 32
Versione Corrente 1.0.1
Ultimo Aggiornamento 2018-11-22
Data di Pubblicazione 2018-11-22
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore arnoutpullen
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/ArnoutPullen/MaterialDarkModeExtension
Lingue Supportate nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Material Design - Custom Dark Mode",
    "description": "Load custom css to set dark mode for some websites.",
    "version": "1.0.1",
    "author": "Arnout Pullen",
    "browser_action": {
        "default_icon": "assets\/material-icon-128-128.png",
        "default_title": "Dark Mode"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tweakers.net\/*"
            ],
            "css": [
                "sites\/tweakers\/tweakers.css"
            ]
        },
        {
            "matches": [
                "https:\/\/9gag.com\/*"
            ],
            "css": [
                "sites\/9gag\/9gag.css"
            ]
        }
    ],
    "icons": {
        "16": "assets\/material-icon-16-16.png",
        "32": "assets\/material-icon-32-32.png",
        "48": "assets\/material-icon-48-48.png",
        "128": "assets\/material-icon-128-128.png"
    }
}