NightMode

Invert Website Colors for Night Viewing

What is NightMode?

NightMode is a Chrome extension developed by https://northernsignal.com, and its main feature is "Invert Website Colors for Night Viewing".

Extension Screenshots

screenshot

Download NightMode Extension CRX File

Download NightMode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name NightMode NightMode
ID kommocijhfofkmkmionppgkhnhnjpmdc
Official URL https://chrome.google.com/webstore/detail/nightmode/kommocijhfofkmkmionppgkhnhnjpmdc
Description Invert Website Colors for Night Viewing
File Size 21.41 KB
Installation Count 492
Current Version 1.0.0
Last Updated 2017-01-14
Publish Date 2017-01-14
Rating 3.43/5 Total 7 Ratings
Developer https://northernsignal.com
Email [email protected]
Payment Type free
Help Page URL https://northernsignal.com
Supported Languages 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"
}