Night Mode

Enjoy the web in the new night colors and protect your eyes

Night Mode क्या है?

Night Mode SmartLink द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enjoy the web in the new night colors and protect your eyes"।

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

screenshot

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

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

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

                        Night Mode

Version 2.0.0
- Fixed style issues after Instagram latest update.
- Adopted native DarkTheme from the Instagram app.
Enjoy !

This extension was developed Independently by SmartLink and not affiliated with Instagram Inc.                    

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

नाम Night Mode Night Mode
ID bkiiljdcpccihhoigelmohcfkehdnjej
आधिकारिक URL https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej
विवरण Enjoy the web in the new night colors and protect your eyes
फ़ाइल का आकार 42.85 KB
स्थापना संख्या 152,483
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2022-06-07
प्रकाशन तिथि 2020-05-16
रेटिंग 3.84/5 कुल 129 रेटिंग्स
डेवलपर SmartLink
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Night Mode",
    "description": "Enjoy the web in the new night colors and protect your eyes",
    "version": "2.0.0",
    "author": "SmartLink",
    "browser_action": {
        "default_title": "Have a good day"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "web_accessible_resources": [
        "nightmode.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}