Blue Check Hider

Identify and hide Twitter Blue users

Blue Check Hiderとは何ですか?

Blue Check Hiderはhttps://gsajith.comによって開発されたChromeの拡張機能で、その主な機能は「Identify and hide Twitter Blue users」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Blue Check Hider拡張機能のCRXファイルをダウンロード

Blue Check Hider拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension will hide any users with a verified checkmark next to their name in the Twitter web UI.

You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8.                    

拡張機能の基本情報

名前 Blue Check Hider Blue Check Hider
ID jhkoihkndkemdikaiafkiolgidghjfkl
公式URL https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl
説明 Identify and hide Twitter Blue users
ファイルサイズ 497 KB
インストール数 611
現在のバージョン 1.3
最終更新日 2023-05-05
公開日 2023-04-21
評価 4.25/5 合計 8 レビュー
開発者 https://gsajith.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/gsajith/blue-check-hider
ヘルプページのURL https://github.com/gsajith/blue-check-hider
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blue Check Hider",
    "version": "1.3",
    "description": "Identify and hide Twitter Blue users",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "http:\/\/*.twitter.com\/*",
                "https:\/\/twitter.com\/*",
                "http:\/\/twitter.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_title": "Blue Check Hider"
    }
}