Dark Theme Everywhere

Darkens bright pages for easier night time reading. Unofficial improvement of 'Nicer Inverter'.

Dark Theme Everywhere क्या है?

Dark Theme Everywhere https://rileyjshaw.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Darkens bright pages for easier night time reading. Unofficial improvement of 'Nicer Inverter'."।

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

screenshot
screenshot

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

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

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

                        **New in Version 6**
Manually toggling a site's theme now adds or removes it from your exceptions list, so you don't need to re-click whenever you refresh!

**New in Version 5**
Subtly darkens photos and media embeds (you can turn this off from the Options page).

**New in Version 4**
Add a list of exceptions from the default theme (eg. "facebook.com").

I was tempted to call this "Nicest Inverter", but it doesn't actually invert anything. It gives you a dark page, no matter what!

Improvements from Nicer Inverter:
● Dark-ifies pages aggressively, so you're much less likely to come across pages with bright patches.
● Dark-ifies pages *by default*, so you don't need to click the extension's button on every page load.
● Allows you to toggle dark styles on and off without reloading the page.
● Optionally darkens photos and media embeds.

There are a lot of inverters out there, and many of them are great. I'm using Dark Reader[1] right now, and honestly, it's better than this for most use cases. BUT! Some pages on the internet are dark by default. When you invert a dark page, it becomes light. AGH MY EYES!

This extension will *always* give you a dark background.

You can change the default theme from "Dark" to "Light" by going to Tools -> Extensions and clicking the "Options" link under Dark Theme Everywhere. You can toggle the theme with a hotkey by going to Tools -> Extensions and clicking the "Keyboard shortcuts" link at the bottom.

Now that your browser is nice and dark-themed, you might notice an annoying white flash between pages. It's a known bug that's being tracked in Issue 1373[2] and Issue 126341[3]. I wrote another extension to reduce the flicker[4], but the problem will exist to some degree until it's fixed in Chromium.

Enjoy! Licensed under MIT.

Links:
[1]: https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh
[2]: https://code.google.com/p/chromium/issues/detail?id=1373
[3]: https://code.google.com/p/chromium/issues/detail?id=126341
[4]: https://chrome.google.com/webstore/detail/reduce-background-flicker/hdnedegfdlmgbabbgmnjnmmijfjeaiib                    

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

नाम Dark Theme Everywhere Dark Theme Everywhere
ID nibjplbnmmklkfnkpecgbffkifmdbjed
आधिकारिक URL https://chromewebstore.google.com/detail/dark-theme-everywhere/nibjplbnmmklkfnkpecgbffkifmdbjed
विवरण Darkens bright pages for easier night time reading. Unofficial improvement of 'Nicer Inverter'.
फ़ाइल का आकार 1.24 MB
स्थापना संख्या 5,705
वर्तमान संस्करण 6.0.0
अंतिम अपडेट 2016-06-29
प्रकाशन तिथि 2016-06-29
रेटिंग 3.94/5 कुल 181 रेटिंग्स
डेवलपर https://rileyjshaw.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/rileyjshaw/dark-theme-everywhere/
सहायता पृष्ठ URL https://github.com/rileyjshaw/dark-theme-everywhere/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dark Theme Everywhere",
    "short_name": "Dark Theme",
    "description": "Darkens bright pages for easier night time reading.  Unofficial improvement of 'Nicer Inverter'.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon38.png",
        "default_title": "Toggle dark theme"
    },
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "js": [
                "client.js"
            ],
            "css": [
                "main.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "icon38.png",
        "icon38-light.png"
    ],
    "version": "6.0.0"
}