Dark mode / night reader

Inverts page colors, showing white text on a dark background

Dark mode / night reader क्या है?

Dark mode / night reader o9000 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inverts page colors, showing white text on a dark background"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Inverts page colors, showing white text on a dark background, to reduce eye strain.

Works especially well for people working during the night or in low light environments.

Click the button in the icon bar to switch between the supported modes:
* Mode 1 (default): invert colors and reduce contrast
* Mode 2: invert colors, normal (high) contrast
* Mode 3: reduce contrast only
* Mode 4: disabled
* Mode 5: inverts colors of text and images (useful for pages containing diagrams with text, but not photos).

The settings are saved separately for each website.

Right click the button to access the Options page, where you can change the default mode (for all pages).

License: GNU GPLv2.

Privacy: this extension respects your privacy; it does not upload any data whatsoever to the Internet. The only setting that is synced via Chrome sync is the default page mode setting; the per-website settings are stored only locally.                    

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

नाम Dark mode / night reader Dark mode / night reader
ID hmafjphdklmdjfcnljjeonfpgafanjjc
आधिकारिक URL https://chromewebstore.google.com/detail/dark-mode-night-reader/hmafjphdklmdjfcnljjeonfpgafanjjc
विवरण Inverts page colors, showing white text on a dark background
फ़ाइल का आकार 45.36 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 2021.6.12.0
अंतिम अपडेट 2021-09-12
प्रकाशन तिथि 2020-04-09
रेटिंग 4.23/5 कुल 236 रेटिंग्स
डेवलपर o9000
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gitlab.com/o9000/darken
सहायता पृष्ठ URL https://gitlab.com/o9000/darken/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dark mode \/ night reader",
    "description": "Inverts page colors, showing white text on a dark background",
    "version": "2021.6.12.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "css": [
                "style.css"
            ],
            "js": [
                "load.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "Darken",
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_page": "options.html"
}