NightMode

Invert Website Colors for Night Viewing

Qu'est-ce que NightMode ?

NightMode est une extension Chrome développée par https://northernsignal.com, et sa fonction principale est "Invert Website Colors for Night Viewing".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NightMode

Téléchargez les fichiers d'extension NightMode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom NightMode NightMode
ID kommocijhfofkmkmionppgkhnhnjpmdc
URL Officiel https://chrome.google.com/webstore/detail/nightmode/kommocijhfofkmkmionppgkhnhnjpmdc
Description Invert Website Colors for Night Viewing
Taille du Fichier 21.41 KB
Nombre d'Installations 492
Version Actuelle 1.0.0
Dernière Mise à Jour 2017-01-14
Date de Publication 2017-01-14
Évaluation 3.43/5 Total 7 Évaluations
Développeur https://northernsignal.com
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://northernsignal.com
Langues Prises en Charge 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"
}