Twitter Bot Hider

Hides twitter bots from your timeline.

Twitter Bot Hider là gì?

Twitter Bot Hider là một tiện ích mở rộng Chrome được phát triển bởi Ebu, và tính năng chính của nó là "Hides twitter bots from your timeline.".

Ả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 Twitter Bot Hider

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

                        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                    

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

Tên Twitter Bot Hider Twitter Bot Hider
ID efpmoenhggjbiaeomapapohigijbobgb
URL Chính Thức https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb
Mô tả Hides twitter bots from your timeline.
Kích Thước Tệp 40.87 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2022-10-31
Ngày Phát Hành 2022-10-31
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Ebu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}