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 |
| 官方網址 | 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 |
| 電子郵箱 | [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\/*"
]
} | |