Better Bird
Makes Twitter a bit better
Better Birdとは何ですか?
Better BirdはMatt Shermanによって開発されたChromeの拡張機能で、その主な機能は「Makes Twitter a bit better」です。
拡張機能のスクリーンショット
Better Bird拡張機能のCRXファイルをダウンロード
Better Bird拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | dolfbfbhjniibjlmpebhdkjanjlcnolp |
公式URL | https://chromewebstore.google.com/detail/better-bird/dolfbfbhjniibjlmpebhdkjanjlcnolp |
説明 | Makes Twitter a bit better |
ファイルサイズ | 83.62 KB |
インストール数 | 201 |
現在のバージョン | 0.4.16 |
最終更新日 | 2013-05-05 |
公開日 | 2013-05-05 |
評価 | 4.56/5 合計 16 レビュー |
開発者 | Matt Sherman |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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\/*" ] } |