Better Bird

Makes Twitter a bit better

Co je Better Bird?

Better Bird je rozšíření Chrome vyvinuté Matt Sherman, a jeho hlavní funkcí je „Makes Twitter a bit better“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Better Bird

Stáhněte si soubory rozšíření Better Bird 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í

                        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.                    

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

Název Better Bird Better Bird
ID dolfbfbhjniibjlmpebhdkjanjlcnolp
Oficiální URL https://chromewebstore.google.com/detail/better-bird/dolfbfbhjniibjlmpebhdkjanjlcnolp
Popis Makes Twitter a bit better
Velikost souboru 83.62 KB
Počet instalací 201
Aktuální Verze 0.4.16
Poslední Aktualizace 2013-05-05
Datum Vydání 2013-05-05
Hodnocení 4.56/5 Celkem 16 Hodnocení
Vývojář Matt Sherman
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/*"
    ]
}