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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
}