NightMode

Invert Website Colors for Night Viewing

Apa itu NightMode?

NightMode adalah ekstensi Chrome yang dikembangkan oleh https://northernsignal.com, dan fitur utamanya adalah "Invert Website Colors for Night Viewing".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi NightMode

Unduh file ekstensi NightMode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama NightMode NightMode
ID kommocijhfofkmkmionppgkhnhnjpmdc
URL Resmi https://chrome.google.com/webstore/detail/nightmode/kommocijhfofkmkmionppgkhnhnjpmdc
Deskripsi Invert Website Colors for Night Viewing
Ukuran File 21.41 KB
Jumlah Instalasi 492
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2017-01-14
Tanggal Publikasi 2017-01-14
Penilaian 3.43/5 Total 7 Penilaian
Pengembang https://northernsignal.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://northernsignal.com
Bahasa yang Didukung 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"
}