BlueLiteBlocker

Filter tweets from Twitter Blue users without having to block or mute them.

BlueLiteBlocker क्या है?

BlueLiteBlocker MalwareTech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filter tweets from Twitter Blue users without having to block or mute them."।

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

screenshot

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

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

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

                        Hide tweets from Twitter Blue users you don't follow without needing to mute or block them.

Customizable to allow tweets from accounts with more than a set number of followers.

Follow @BlueLiteBlocker on Twitter for Updates/Support.                    

एक्सटेंशन की मूल जानकारी

नाम BlueLiteBlocker BlueLiteBlocker
ID gimbefnamedicgajjballjjhanhnpjce
आधिकारिक URL https://chromewebstore.google.com/detail/blueliteblocker/gimbefnamedicgajjballjjhanhnpjce
विवरण Filter tweets from Twitter Blue users without having to block or mute them.
फ़ाइल का आकार 39.73 KB
स्थापना संख्या 3,766
वर्तमान संस्करण 0.0.0.9
अंतिम अपडेट 2023-05-23
प्रकाशन तिथि 2023-04-26
रेटिंग 4.92/5 कुल 36 रेटिंग्स
डेवलपर MalwareTech
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/BlueLiteBlocker/BlueLiteBlocker
सहायता पृष्ठ URL https://github.com/BlueLiteBlocker/BlueLiteBlocker/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BlueLiteBlocker",
    "version": "0.0.0.9",
    "description": "Filter tweets from Twitter Blue users without having to block or mute them.",
    "icons": {
        "48": "icons\/logo-48.png",
        "128": "icons\/logo-128.png"
    },
    "options_ui": {
        "page": "settings.html",
        "browser_style": true
    },
    "action": {
        "default_area": "navbar",
        "default_icon": {
            "128": "icons\/logo-128.png"
        },
        "default_popup": "settings.html"
    },
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "xhr_hook.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "extension.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "injector.js"
            ]
        }
    ]
}