Dark Mode View

Allows you to enable all websites to be dark mode to ease eye strain.

Dark Mode View क्या है?

Dark Mode View http://darkview.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to enable all websites to be dark mode to ease eye strain. "।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.                    

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

नाम Dark Mode View Dark Mode View
ID ooliejnanmkmfamajdfidknhaklmiedd
आधिकारिक URL https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd
विवरण Allows you to enable all websites to be dark mode to ease eye strain.
फ़ाइल का आकार 20.61 KB
स्थापना संख्या 5,870
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-03-30
प्रकाशन तिथि 2021-03-30
रेटिंग 4.50/5 कुल 2 रेटिंग्स
डेवलपर http://darkview.org
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://darkview.org/
सहायता पृष्ठ URL https://darkview.org/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Greg Henderson",
    "homepage_url": "https:\/\/darkview.org",
    "name": "Dark Mode View",
    "description": "Allows you to enable all websites to be dark mode to ease eye strain. ",
    "icons": {
        "128": "icon-128.png"
    },
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autotoggle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_title": "Dark Mode Viewer",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}