NightMode

Invert Website Colors for Night Viewing

NightModeคืออะไร?

NightMode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://northernsignal.com และคุณลักษณะหลักของมันคือ "Invert Website Colors for Night Viewing"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NightMode

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
}