NightMode

Invert Website Colors for Night Viewing

Co to jest NightMode?

NightMode to rozszerzenie Chrome opracowane przez https://northernsignal.com, a jego główną funkcją jest „Invert Website Colors for Night Viewing”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NightMode

Pobierz pliki rozszerzeń NightMode 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 and adjust brightness of webpages for viewing at night.  Especially useful for public safety and mobile users.                    

Podstawowe informacje o rozszerzeniu

Nazwa NightMode NightMode
ID kommocijhfofkmkmionppgkhnhnjpmdc
Oficjalny URL https://chrome.google.com/webstore/detail/nightmode/kommocijhfofkmkmionppgkhnhnjpmdc
Opis Invert Website Colors for Night Viewing
Rozmiar pliku 21.41 KB
Liczba instalacji 492
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2017-01-14
Data Publikacji 2017-01-14
Ocena 3.43/5 Łącznie 7 Oceny
Deweloper https://northernsignal.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://northernsignal.com
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "nightmode-128.png",
        "default_popup": "popup.html",
        "default_title": "NightMode (Shift+F11)"
    },
    "commands": {
        "command_toggle_global": {
            "description": "Toggle NightMode ON\/OFF"
        },
        "command_toggle_site": {
            "description": "Toggle Inversion on a Site"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "nightmode.js"
            ],
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "description": "Invert Website Colors for Night Viewing",
    "icons": {
        "128": "nightmode-128.png"
    },
    "name": "NightMode",
    "manifest_version": 2,
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs"
    ],
    "web_accessible_resources": [
        "nightmode.css"
    ],
    "version": "1.0.0",
    "short_name": "NightMode",
    "author": "Northern Signal"
}