Twitter Blues

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

O que é Twitter Blues?

Twitter Blues é uma extensão do Chrome desenvolvida por Pheonise, e sua principal característica é "This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitter Blues

Baixe arquivos de extensão Twitter Blues no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Twitter Blues Twitter Blues
ID gkfadfcgdlbpkepcjdcicjjmphgehehk
URL Oficial https://chromewebstore.google.com/detail/twitter-blues/gkfadfcgdlbpkepcjdcicjjmphgehehk
Descrição This extension changes Twitter's new garish white background to something easier on the eyes. Now includes custom color picker!
Tamanho do Arquivo 9.26 KB
Contagem de Instalações 23
Versão Atual 0.2.3
Última Atualização 2016-06-20
Data de Publicação 2016-06-20
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor Pheonise
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}