Smart Dark Mode

Does not use heavy codes. It doesn't break the web design. Detects only bright sites and invert them to dark sites.

Smart Dark Mode क्या है?

Smart Dark Mode ndaesik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Does not use heavy codes. It doesn't break the web design. Detects only bright sites and invert them to dark sites."।

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

screenshot

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

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

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

                        - All elements are displayed normally.
- The script is light.
- Dark pages do not convert.
- Easy to add/remove filters.                    

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

नाम Smart Dark Mode Smart Dark Mode
ID mpdjakileikddgilaegaijhmfhendcji
आधिकारिक URL https://chromewebstore.google.com/detail/smart-dark-mode/mpdjakileikddgilaegaijhmfhendcji
विवरण Does not use heavy codes. It doesn't break the web design. Detects only bright sites and invert them to dark sites.
फ़ाइल का आकार 41.16 KB
स्थापना संख्या 226
वर्तमान संस्करण 1
अंतिम अपडेट 2022-05-31
प्रकाशन तिथि 2022-05-31
डेवलपर ndaesik
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ id,de,en,fr,nl,vi,tr,da,es,hr,it,hu,pl,pt-BR,pt-PT,sk,cs,sr,ru,uk,hi,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "activeTab",
        "background"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "css": [
                "content_scripts\/css.css"
            ],
            "js": [
                "content_scripts\/script.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    }
}