Twitter Bot Hider
Hides twitter bots from your timeline.
什麼是Twitter Bot Hider?
Twitter Bot Hider是由Ebu開發的Chrome擴展程式,該擴展的主要功能是“Hides twitter bots from your timeline.”。
擴展截圖
下載Twitter Bot Hider擴展crx文件
下載Twitter Bot Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies.
The source code can be found here: https://github.com/EbuOgden/TwitterBotHider                     擴展基本資訊
| 名稱 |   |  
| ID | efpmoenhggjbiaeomapapohigijbobgb | 
| 官方網址 | https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb | 
| 簡介 | Hides twitter bots from your timeline. | 
| 檔案大小 | 40.87 KB | 
| 安裝次數 | 33 | 
| 目前版本 | 0.1.1 | 
| 更新時間 | 2022-10-31 | 
| 上架時間 | 2022-10-31 | 
| 評分 | 5.00/5 共 3 次評分 | 
| 開發者 | Ebu | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 支援的語言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Bot Hider",
    "version": "0.1.1",
    "description": "Hides twitter bots from your timeline.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "https:\/\/*.githubusercontent.com\/*"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "Twitter Bot Hider",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}  |  |