Dark Mode View

Allows you to enable all websites to be dark mode to ease eye strain.

Vad är Dark Mode View?

Dark Mode View är en Chrome-tillägg utvecklad av http://darkview.org, och dess huvudfunktion är "Allows you to enable all websites to be dark mode to ease eye strain. ".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Dark Mode View-förlängningens CRX-fil

Ladda ner Dark Mode View-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.                    

Grundläggande Information om Tillägg

Namn Dark Mode View Dark Mode View
ID ooliejnanmkmfamajdfidknhaklmiedd
Officiell webbadress https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd
Beskrivning Allows you to enable all websites to be dark mode to ease eye strain.
Filstorlek 20.61 KB
Antal Installationer 5,870
Aktuell Version 1.0
Senast Uppdaterad 2021-03-30
Publiceringsdatum 2021-03-30
Betyg 4.50/5 Totalt 2 Betyg
Utvecklare http://darkview.org
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://darkview.org/
Hjälpsida URL https://darkview.org/
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Greg Henderson",
    "homepage_url": "https:\/\/darkview.org",
    "name": "Dark Mode View",
    "description": "Allows you to enable all websites to be dark mode to ease eye strain. ",
    "icons": {
        "128": "icon-128.png"
    },
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autotoggle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_title": "Dark Mode Viewer",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}