Simple Night Mode

An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.

Co to jest Simple Night Mode?

Simple Night Mode to rozszerzenie Chrome opracowane przez Aniket, a jego główną funkcją jest „An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Simple Night Mode

Pobierz pliki rozszerzeń Simple Night 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

                        Invert the color of any webpage/website, making contents of any website readable and less stressful on your eyes if you are surfing internet in dark lit room.

Click the Simple Night Mode Button to start Night Mode.                    

Podstawowe informacje o rozszerzeniu

Nazwa Simple Night Mode Simple Night Mode
ID daogheeomfnjjbabmnmgpbhmamegpbaj
Oficjalny URL https://chromewebstore.google.com/detail/simple-night-mode/daogheeomfnjjbabmnmgpbhmamegpbaj
Opis An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.
Rozmiar pliku 7.84 KB
Liczba instalacji 1,967
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2016-12-06
Data Publikacji 2016-12-06
Ocena 4.15/5 Łącznie 40 Oceny
Deweloper Aniket
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Night Mode",
    "version": "1.0.2",
    "description": "An addon to invert the color of any webpage\/website, making contents of any website less stressful on your eyes.",
    "background": {
        "scripts": [
            "libs\/control.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "libs\/system.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/icon24.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon24.png",
            "38": "images\/icon48.png"
        },
        "default_title": "Simple Night Mode"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "themes\/simple.css",
        "libs\/system.js"
    ]
}