Twitter Blue Blocker

An extension that (tries to) block twitter blue users as they load onto your TL

Twitter Blue Blocker là gì?

Twitter Blue Blocker là một tiện ích mở rộng Chrome được phát triển bởi rlyshw, và tính năng chính của nó là "An extension that (tries to) block twitter blue users as they load onto your TL".

Ả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 Blue Blocker

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

                        Attempts to block blue checks for you as you scroll.
They'll still appear on the TL the first time since this doesn't update the UI, but they'll be added to your block list. 

if you'd like to send me $8 instead
venmo/paypal: rlyshw                    

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

Tên Twitter Blue Blocker Twitter Blue Blocker
ID oenpfikjdpcjchnooafpppoaaailendg
URL Chính Thức https://chromewebstore.google.com/detail/twitter-blue-blocker/oenpfikjdpcjchnooafpppoaaailendg
Mô tả An extension that (tries to) block twitter blue users as they load onto your TL
Kích Thước Tệp 26.25 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-04-25
Ngày Phát Hành 2023-04-25
Nhà Phát Triển rlyshw
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rlyshw/blue-check-blocker
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Blue Blocker",
    "description": "An extension that (tries to) block twitter blue users as they load onto your TL",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "world": "MAIN",
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "runAt": "document_start",
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/blue_block16.png",
            "32": "\/images\/blue_block32.png",
            "48": "\/images\/blue_block48.png",
            "128": "\/images\/blue_block128.png"
        }
    },
    "icons": {
        "16": "\/images\/blue_block16.png",
        "32": "\/images\/blue_block32.png",
        "48": "\/images\/blue_block48.png",
        "128": "\/images\/blue_block128.png"
    },
    "options_page": "options.html"
}