Better Dark Mode

Give pages a better dark mode by avoiding things like full white text on full black background.

Co to jest Better Dark Mode?

Better Dark Mode to rozszerzenie Chrome opracowane przez f, a jego główną funkcją jest „Give pages a better dark mode by avoiding things like full white text on full black background.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Better Dark Mode

Pobierz pliki rozszerzeń Better Dark Mode 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

                        - Creates a dark mode of any page by inverting the original colors, background-colors, border-colors.
- Unlike most "dark modes," Better Dark Mode reduces eye-strain by not allowing any RGB values below 50 or above 200 by default.  Darkness and brightness limits can be customized by user.

Potential updates:
- Find a way to avoid flash of non-darkened page before extension runs on page load
- Store the active/inactive state as well as darkness/brightness limit variables Chrome-wide (currently using localStorage)                    

Podstawowe informacje o rozszerzeniu

Nazwa Better Dark Mode Better Dark Mode
ID ibkdocnpanhgcbbfadninaflpgjecmod
Oficjalny URL https://chromewebstore.google.com/detail/better-dark-mode/ibkdocnpanhgcbbfadninaflpgjecmod
Opis Give pages a better dark mode by avoiding things like full white text on full black background.
Rozmiar pliku 32.05 KB
Liczba instalacji 5,638
Aktualna Wersja 0.9.4
Ostatnia Aktualizacja 2017-09-23
Data Publikacji 2017-09-23
Ocena 3.46/5 Łącznie 26 Oceny
Deweloper f
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Dark Mode",
    "short_name": "Better Dark",
    "description": "Give pages a better dark mode by avoiding things like full white text on full black background.",
    "version": "0.9.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "insert.js"
            ]
        }
    ]
}