Better Bird

Makes Twitter a bit better

Better Bird là gì?

Better Bird là một tiện ích mở rộng Chrome được phát triển bởi Matt Sherman, và tính năng chính của nó là "Makes Twitter a bit better".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Better Bird

Tải xuống các tệp mở rộng Better Bird dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Better Bird Better Bird
ID dolfbfbhjniibjlmpebhdkjanjlcnolp
URL Chính Thức https://chromewebstore.google.com/detail/better-bird/dolfbfbhjniibjlmpebhdkjanjlcnolp
Mô tả Makes Twitter a bit better
Kích Thước Tệp 83.62 KB
Số Lần Cài Đặt 201
Phiên Bản Hiện Tại 0.4.16
Cập Nhật Lần Cuối 2013-05-05
Ngày Phát Hành 2013-05-05
Đánh Giá 4.56/5 Tổng số 16 Đánh Giá
Nhà Phát Triển Matt Sherman
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}