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
Eメール [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"
}