Twitter Blues

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

Cos'è Twitter Blues?

Twitter Blues è un'estensione di Chrome sviluppata da Pheonise, e la sua funzione principale è "This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitter Blues

Scarica i file di estensione Twitter Blues in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Twitter Blues Twitter Blues
ID gkfadfcgdlbpkepcjdcicjjmphgehehk
URL Ufficiale https://chromewebstore.google.com/detail/twitter-blues/gkfadfcgdlbpkepcjdcicjjmphgehehk
Descrizione This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!
Dimensione del File 9.26 KB
Conteggio Installazioni 23
Versione Corrente 0.2.3
Ultimo Aggiornamento 2016-06-20
Data di Pubblicazione 2016-06-20
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore Pheonise
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}