Twitter Blue Blocker

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

什么是Twitter Blue Blocker?

Twitter Blue Blocker是由rlyshw开发的Chrome扩展程序,该扩展的主要功能是“An extension that (tries to) block twitter blue users as they load onto your TL”。

扩展截图

screenshot

下载Twitter Blue Blocker扩展crx文件

下载Twitter Blue Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Twitter Blue Blocker Twitter Blue Blocker
ID oenpfikjdpcjchnooafpppoaaailendg
官方URL https://chromewebstore.google.com/detail/twitter-blue-blocker/oenpfikjdpcjchnooafpppoaaailendg
简介 An extension that (tries to) block twitter blue users as they load onto your TL
文件大小 26.25 KB
安装次数 40
当前版本 1.0
更新时间 2023-04-25
上架时间 2023-04-25
开发者 rlyshw
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/rlyshw/blue-check-blocker
支持的语言 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"
}