Better Bird

Makes Twitter a bit better

O que é Better Bird?

Better Bird é uma extensão do Chrome desenvolvida por Matt Sherman, e sua principal característica é "Makes Twitter a bit better".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Better Bird

Baixe arquivos de extensão Better Bird 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

                        This Google Chrome extension will:

- Move content (timeline) to the left-hand side and the dashboard to the right for easier reading.
- Expand shortened URL’s wherever possible, so you know where you are actually clicking.
- Display your saved searches & @mentions.
- Hide “Trends”, “Who to Follow”, and “#Discover”
- Widen the layout and (optionally) use a serif font

It’s open source, too: https://github.com/clipperhouse/BetterBird

Uses the lovely Twitter icons from Design Junction.                    

Informações Básicas da Extensão

Nome Better Bird Better Bird
ID dolfbfbhjniibjlmpebhdkjanjlcnolp
URL Oficial https://chromewebstore.google.com/detail/better-bird/dolfbfbhjniibjlmpebhdkjanjlcnolp
Descrição Makes Twitter a bit better
Tamanho do Arquivo 83.62 KB
Contagem de Instalações 201
Versão Atual 0.4.16
Última Atualização 2013-05-05
Data de Publicação 2013-05-05
Classificação 4.56/5 Total de 16 Avaliações
Desenvolvedor Matt Sherman
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Bird",
    "version": "0.4.16",
    "description": "Makes Twitter a bit better",
    "background": {
        "page": "background.html"
    },
    "web_accessible_resources": [
        "img\/twitter_16.png",
        "img\/twitter_32.png",
        "img\/twitter_32_notify.png"
    ],
    "icons": {
        "16": "img\/twitter_16.png",
        "32": "img\/twitter_32.png",
        "64": "img\/twitter_64.png",
        "128": "img\/twitter_128.png"
    },
    "browser_action": {
        "default_icon": "img\/twitter_32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "js\/jquery-1.7.1.min.js",
                "js\/jquery.hoverIntent.min.js",
                "js\/utils.min.js",
                "js\/contentscript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/twitter.com\/*",
        "*:\/\/search.twitter.com\/*",
        "*:\/\/api.twitter.com\/*"
    ]
}