Cleaner Twitter

Make Twitter UI cleaner by removing annoying pieces.

什麼是Cleaner Twitter?

Cleaner Twitter是由Kenny_1291開發的Chrome擴展程式,該擴展的主要功能是“Make Twitter UI cleaner by removing annoying pieces.”。

擴展截圖

screenshot
screenshot
screenshot

下載Cleaner Twitter擴展crx文件

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

擴展使用說明

                        With this extension you can hide annoying Twitter UI pieces.

*FEATURES*
- Predefined rules
- Modify and add custom CSS rules
- Predefined rules updates (no extension update required)


Source code: https://github.com/Kenny1291/cleaner-twitter                    

擴展基本資訊

名稱 Cleaner Twitter Cleaner Twitter
ID iplodopmopkmkpblangcjomcdfiidneo
官方網址 https://chromewebstore.google.com/detail/cleaner-twitter/iplodopmopkmkpblangcjomcdfiidneo
簡介 Make Twitter UI cleaner by removing annoying pieces.
檔案大小 197 KB
安裝次數 27
目前版本 0.3.2
更新時間 2024-02-05
上架時間 2023-05-01
開發者 Kenny_1291
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Kenny1291/cleaner-twitter
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cleaner Twitter",
    "description": "Make Twitter UI cleaner by removing annoying pieces.",
    "version": "0.3.2",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "19": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "background": {
        "service_worker": "service_workers\/background.js",
        "type": "module"
    },
    "options_page": "options\/options.html",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "utils.js"
            ]
        }
    ]
}