Special Dark

Darkens bright pages. Love your eyes and your power bill.

Special Dark क्या है?

Special Dark Eonasdan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Darkens bright pages. Love your eyes and your power bill."।

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

screenshot
screenshot

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

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

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

                        ##Changes 1.8.0
- Fixed issue with github comment text.
- Replace github styles without backgrounnd image and a more updated sheet.
- Dropped Twitter styles since Twitter now has a dark theme.

## Features:
 - Includes a few special site specific styles such as:
   - Facebook
   - Amazon
   - Github
   - Stack Exchange

I realize that Stylish exists and is useful for styling individual sites, however I think that Special Dark works well for most sites with a few exceptions.                    

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

नाम Special Dark Special Dark
ID koifkokhhgjemendlnlaellpdeppkbmi
आधिकारिक URL https://chromewebstore.google.com/detail/special-dark/koifkokhhgjemendlnlaellpdeppkbmi
विवरण Darkens bright pages. Love your eyes and your power bill.
फ़ाइल का आकार 99.18 KB
स्थापना संख्या 635
वर्तमान संस्करण 1.8.0
अंतिम अपडेट 2019-09-22
प्रकाशन तिथि 2019-09-22
रेटिंग 3.72/5 कुल 25 रेटिंग्स
डेवलपर Eonasdan
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Eonasdan/specialdark
समर्थित भाषाएँ en-US
manifest.json
{
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon38.png",
        "default_title": "Toggle dark theme"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "client.js"
            ],
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Darkens bright pages. Love your eyes and your power bill.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "name": "Special Dark",
    "options_page": "options.html",
    "short_name": "Special Dark",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.8.0",
    "web_accessible_resources": [
        "*"
    ]
}