Blue Check Hider

Identify and hide Twitter Blue users

What is Blue Check Hider?

Blue Check Hider is a Chrome extension developed by https://gsajith.com, and its main feature is "Identify and hide Twitter Blue users".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Blue Check Hider Extension CRX File

Download Blue Check Hider extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Blue Check Hider Blue Check Hider
ID jhkoihkndkemdikaiafkiolgidghjfkl
Official URL https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl
Description Identify and hide Twitter Blue users
File Size 497 KB
Installation Count 611
Current Version 1.3
Last Updated 2023-05-05
Publish Date 2023-04-21
Rating 4.25/5 Total 8 Ratings
Developer https://gsajith.com
Email [email protected]
Payment Type free
Extension Website https://github.com/gsajith/blue-check-hider
Help Page URL https://github.com/gsajith/blue-check-hider
Supported Languages 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"
    }
}