NightMode

Invert Website Colors for Night Viewing

NightModeとは何ですか?

NightModeはhttps://northernsignal.comによって開発されたChromeの拡張機能で、その主な機能は「Invert Website Colors for Night Viewing」です。

拡張機能のスクリーンショット

screenshot

NightMode拡張機能のCRXファイルをダウンロード

NightMode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 NightMode NightMode
ID kommocijhfofkmkmionppgkhnhnjpmdc
公式URL https://chrome.google.com/webstore/detail/nightmode/kommocijhfofkmkmionppgkhnhnjpmdc
説明 Invert Website Colors for Night Viewing
ファイルサイズ 21.41 KB
インストール数 492
現在のバージョン 1.0.0
最終更新日 2017-01-14
公開日 2017-01-14
評価 3.43/5 合計 7 レビュー
開発者 https://northernsignal.com
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://northernsignal.com
対応言語 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"
}