Night Mode Pro

Switch to night mode and the display is much easier on your eyes!

Night Mode Pro क्या है?

Night Mode Pro Benni द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch to night mode and the display is much easier on your eyes!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Night Mode Pro एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Night Mode Pro is an extension to change the screen's luminosity (Day/Night modes) when you surf the Internet. Besides, you can easily adjust the screen's brightness.

Some features:
1. Protect your eyes with Night Mode extension by dimming the light when the environment is dark or vise-versa.
2. Easily change the screen brightness on either Day or Night modes.
3. In Night Mode, the entire page will be fading to dark and all text colors will be adjusted to the dark color as well.
4. In Day Mode, the page and all text colors will be switched to normal.

Note 1: to whitelist a website from Night Mode, open the options page and add the URL to the list.

Note 2: to report bugs, please fill the bug report form in the addon's homepage: https://mybrowseraddon.com/night-mode.html                    

एक्सटेंशन की मूल जानकारी

नाम Night Mode Pro Night Mode Pro
ID gbilbeoogenjmnabenfjfoockmpfnjoh
आधिकारिक URL https://chromewebstore.google.com/detail/night-mode-pro/gbilbeoogenjmnabenfjfoockmpfnjoh
विवरण Switch to night mode and the display is much easier on your eyes!
फ़ाइल का आकार 70.09 KB
स्थापना संख्या 53,340
वर्तमान संस्करण 0.3.7
अंतिम अपडेट 2024-02-28
प्रकाशन तिथि 2019-08-05
रेटिंग 2.48/5 कुल 1021 रेटिंग्स
डेवलपर Benni
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mybrowseraddon.com/night-mode.html
सहायता पृष्ठ URL https://mybrowseraddon.com/night-mode.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.3.7",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Night Mode Pro",
    "homepage_url": "https:\/\/mybrowseraddon.com\/night-mode.html",
    "description": "Switch to night mode and the display is much easier on your eyes!",
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "data\/content_script\/inject.css"
            ]
        }
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "permissions": [
        "alarms",
        "storage",
        "activeTab"
    ],
    "action": {
        "default_title": "Night Mode Pro",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "commands": {
        "toggle-night-mode": {
            "description": "Toggle Night Mode (ON \/ OFF)",
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            }
        },
        "add-to-whitelist": {
            "description": "Add Active Tab to Whitelist",
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            }
        },
        "remove-from-whitelist": {
            "description": "Remove Active Tab from Whitelist",
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            }
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}