NightMode

Invert Website Colors for Night Viewing

Wat is NightMode?

NightMode is een Chrome-extensie ontwikkeld door https://northernsignal.com, en de belangrijkste functie is "Invert Website Colors for Night Viewing".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie NightMode

Download NightMode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Invert the color and adjust brightness of webpages for viewing at night.  Especially useful for public safety and mobile users.                    

Basisinformatie over de Extensie

Naam NightMode NightMode
ID kommocijhfofkmkmionppgkhnhnjpmdc
Officiële URL https://chrome.google.com/webstore/detail/nightmode/kommocijhfofkmkmionppgkhnhnjpmdc
Beschrijving Invert Website Colors for Night Viewing
Bestandsgrootte 21.41 KB
Aantal Installaties 492
Huidige Versie 1.0.0
Laatst Bijgewerkt 2017-01-14
Publicatiedatum 2017-01-14
Beoordeling 3.43/5 Totaal 7 Beoordelingen
Ontwikkelaar https://northernsignal.com
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://northernsignal.com
Ondersteunde Talen 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"
}