Twitter Blues

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

Co je Twitter Blues?

Twitter Blues je rozšíření Chrome vyvinuté Pheonise, a jeho hlavní funkcí je „This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitter Blues

Stáhněte si soubory rozšíření Twitter Blues ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Twitter Blues Twitter Blues
ID gkfadfcgdlbpkepcjdcicjjmphgehehk
Oficiální URL https://chromewebstore.google.com/detail/twitter-blues/gkfadfcgdlbpkepcjdcicjjmphgehehk
Popis This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!
Velikost souboru 9.26 KB
Počet instalací 23
Aktuální Verze 0.2.3
Poslední Aktualizace 2016-06-20
Datum Vydání 2016-06-20
Hodnocení 3.00/5 Celkem 1 Hodnocení
Vývojář Pheonise
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}