Blue Check Hider

Identify and hide Twitter Blue users

Blue Check Hider क्या है?

Blue Check Hider https://gsajith.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Identify and hide Twitter Blue users"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Blue Check Hider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}