top dark

simply make the web page look dark

Wat is top dark?

top dark is een Chrome-extensie ontwikkeld door jessiejforemang33x, en de belangrijkste functie is "simply make the web page look dark".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie top dark

Download top dark-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A very quick and simple dark mode for web pages
1) open web page example lipsum.com
2)click on extension icon to turn on dark mode                    

Basisinformatie over de Extensie

Naam top dark top dark
ID nikmocloenleakdccdpldaephmkjekia
Officiële URL https://chrome.google.com/webstore/detail/top-dark/nikmocloenleakdccdpldaephmkjekia
Beschrijving simply make the web page look dark
Bestandsgrootte 59.75 KB
Aantal Installaties 2,000
Huidige Versie 0.1
Laatst Bijgewerkt 2021-11-17
Publicatiedatum 2021-11-17
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar jessiejforemang33x
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "description": "simply make the web page look dark",
    "name": "top dark",
    "version": "0.1",
    "action": {
        "default_icon": "icons.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icons.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}