Twitter Blues

This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!

Twitter Blues क्या है?

Twitter Blues Pheonise द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!"।

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

screenshot

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

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

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

                        Quick 'n' simple extension to change Twitter's new garish white background to something a little easier on the eyes. Now includes custom color picker!

Kudos to @tricepidemic for huge help!

@Pheonise                    

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

नाम Twitter Blues Twitter Blues
ID gkfadfcgdlbpkepcjdcicjjmphgehehk
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-blues/gkfadfcgdlbpkepcjdcicjjmphgehehk
विवरण This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!
फ़ाइल का आकार 9.26 KB
स्थापना संख्या 23
वर्तमान संस्करण 0.2.3
अंतिम अपडेट 2016-06-20
प्रकाशन तिथि 2016-06-20
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर Pheonise
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Blues",
    "description": "This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!",
    "version": "0.2.3",
    "icons": {
        "48": "icon48.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/*.twitter.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "updatepage.js"
            ],
            "run_at": "document_start"
        }
    ]
}