Twitter Bot Hider

Hides twitter bots from your timeline.

Twitter Bot Hider क्या है?

Twitter Bot Hider Ebu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides twitter bots from your timeline."।

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

screenshot

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

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

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

                        Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies.

The source code can be found here: https://github.com/EbuOgden/TwitterBotHider                    

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

नाम Twitter Bot Hider Twitter Bot Hider
ID efpmoenhggjbiaeomapapohigijbobgb
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb
विवरण Hides twitter bots from your timeline.
फ़ाइल का आकार 40.87 KB
स्थापना संख्या 33
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2022-10-31
प्रकाशन तिथि 2022-10-31
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Ebu
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Bot Hider",
    "version": "0.1.1",
    "description": "Hides twitter bots from your timeline.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "https:\/\/*.githubusercontent.com\/*"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "Twitter Bot Hider",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}