Dark Mode For Medium

Dark Mode for Medium, Helps you to Decrease your Eye Strain

Cos'è Dark Mode For Medium?

Dark Mode For Medium è un'estensione di Chrome sviluppata da Tanmay, e la sua funzione principale è "Dark Mode for Medium, Helps you to Decrease your Eye Strain".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Dark Mode For Medium

Scarica i file di estensione Dark Mode For Medium 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

                        On Average people spend more than 5 hours Reading Medium Articles which can cause Eye Strain so to reduce that I have created Dark Mode for Medium                    

Informazioni di Base sull'Estensione

Nome Dark Mode For Medium Dark Mode For Medium
ID nbhcholhhmhlbiphogmfinfelpgcjgkb
URL Ufficiale https://chromewebstore.google.com/detail/dark-mode-for-medium/nbhcholhhmhlbiphogmfinfelpgcjgkb
Descrizione Dark Mode for Medium, Helps you to Decrease your Eye Strain
Dimensione del File 9.37 KB
Conteggio Installazioni 294
Versione Corrente 1.2
Ultimo Aggiornamento 2021-08-30
Data di Pubblicazione 2021-08-30
Valutazione 2.50/5 Totale 2 Valutazioni
Sviluppatore Tanmay
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://www.youtube.com/channel/UCdr9NmszjQ49_f9wV-egc7A
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dark Mode For Medium",
    "version": "1.2",
    "description": "Dark Mode for Medium, Helps you to Decrease your Eye Strain",
    "author": "Tanmay",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.medium.com\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "ON or OFF"
    },
    "icons": {
        "16": "images\/16x16.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "web_accessible_resources": [
        "styles.css"
    ],
    "permissions": [
        "activeTab"
    ]
}