Dark Mode View

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

Co to jest Dark Mode View?

Dark Mode View to rozszerzenie Chrome opracowane przez http://darkview.org, a jego główną funkcją jest „Allows you to enable all websites to be dark mode to ease eye strain. ”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Dark Mode View

Pobierz pliki rozszerzeń Dark Mode View w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Dark Mode View Dark Mode View
ID ooliejnanmkmfamajdfidknhaklmiedd
Oficjalny URL https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd
Opis Allows you to enable all websites to be dark mode to ease eye strain.
Rozmiar pliku 20.61 KB
Liczba instalacji 5,870
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-03-30
Data Publikacji 2021-03-30
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper http://darkview.org
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://darkview.org/
Adres URL Strony Pomocy https://darkview.org/
Obsługiwane Języki 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"
    ]
}