Better Twitter

Hide what's not important on Twitter.com

Better Twitter là gì?

Better Twitter là một tiện ích mở rộng Chrome được phát triển bởi Razvan Caliman, và tính năng chính của nó là "Hide what's not important on Twitter.com".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Better Twitter 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

                        Bug reports and feature requests go here:
https://github.com/oslego/better-twitter/issues

Toggle these preferences on the extension's options page:

- No fame: Hide number of followers and following count
- No vanity: Hide number of tweet likes, retweets and replies
- Hide promoted tweets
- Hide retweets
- Hide tweets liked by others
- Hide “Trends for you”
- Hide “Who to follow”
- Hide website footer                    

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

Tên Better Twitter Better Twitter
ID illmpnnkeobcgnnjghammeohfjpjoljp
URL Chính Thức https://chromewebstore.google.com/detail/better-twitter/illmpnnkeobcgnnjghammeohfjpjoljp
Mô tả Hide what's not important on Twitter.com
Kích Thước Tệp 11.05 KB
Số Lần Cài Đặt 3,699
Phiên Bản Hiện Tại 2.1.2
Cập Nhật Lần Cuối 2023-01-16
Ngày Phát Hành 2020-06-03
Đánh Giá 3.65/5 Tổng số 31 Đánh Giá
Nhà Phát Triển Razvan Caliman
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/oslego/better-twitter/
URL Trang Trợ Giúp https://github.com/oslego/better-twitter/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Twitter",
    "version": "2.1.2",
    "description": "Hide what's not important on Twitter.com",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "{ef32ca60-1728-4011-a585-4de439fe7ba7}"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false,
        "browser_style": true,
        "chrome_style": true
    },
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "options.js",
        "prefs.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "utils.js",
                "prefs.js",
                "content.js"
            ]
        }
    ]
}