Dark Mode for Chrome

Click the icon to enable Dark Mode For Chrome. Dark theme with a single move.

Wat is Dark Mode for Chrome?

Dark Mode for Chrome is een Chrome-extensie ontwikkeld door whiskytinkey, en de belangrijkste functie is "Click the icon to enable Dark Mode For Chrome. Dark theme with a single move.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Dark Mode for Chrome

Download Dark Mode for Chrome-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

                        "Dark Mode for Chrome" is a browser extension (plugin) for Google Chrome, which is designed to change the color scheme of your browser and web pages to dark mode. This plug-in can be especially useful at night or in low light conditions, when the bright white background of web pages and browser interfaces can be annoying or uncomfortable for the eyes.                    

Basisinformatie over de Extensie

Naam Dark Mode for Chrome Dark Mode for Chrome
ID ebicpcgpphapkikpnijepngcchnpmbao
Officiële URL https://chromewebstore.google.com/detail/dark-mode-for-chrome/ebicpcgpphapkikpnijepngcchnpmbao
Beschrijving Click the icon to enable Dark Mode For Chrome. Dark theme with a single move.
Bestandsgrootte 257 KB
Aantal Installaties 247
Huidige Versie 0.1.2
Laatst Bijgewerkt 2023-10-11
Publicatiedatum 2023-09-10
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar whiskytinkey
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "manifest_version": 3,
    "version": "0.1.2",
    "default_locale": "en",
    "description": "__MSG_extShortDesc__",
    "offline_enabled": true,
    "host_permissions": [
        ""
    ],
    "optional_permissions": [
        "alarms"
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_title": "Dark Mode",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    },
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "data\/content_script\/custom\/*",
                "data\/content_script\/general\/*",
                "data\/content_script\/page_context\/mainContentScript.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "css": [
                "data\/content_script\/mainContentScript.css"
            ],
            "js": [
                "data\/rules\/rules.js",
                "data\/content_script\/mainContentScript.js",
                "data\/content_script\/vendor\/tinycolor.js",
                "data\/content_script\/resources\/native.js"
            ]
        }
    ]
}