Better Twitter

Hide what's not important on Twitter.com

什麼是Better Twitter?

Better Twitter是由Razvan Caliman開發的Chrome擴展程式,該擴展的主要功能是“Hide what's not important on Twitter.com”。

擴展截圖

screenshot
screenshot

下載Better Twitter擴展crx文件

下載Better Twitter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Better Twitter Better Twitter
ID illmpnnkeobcgnnjghammeohfjpjoljp
官方網址 https://chromewebstore.google.com/detail/better-twitter/illmpnnkeobcgnnjghammeohfjpjoljp
簡介 Hide what's not important on Twitter.com
檔案大小 11.05 KB
安裝次數 3,699
目前版本 2.1.2
更新時間 2023-01-16
上架時間 2020-06-03
評分 3.65/5 共 31 次評分
開發者 Razvan Caliman
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/oslego/better-twitter/
說明頁面URL https://github.com/oslego/better-twitter/issues
支援的語言 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"
            ]
        }
    ]
}