Shadowban Scanner

A browser extension that detects shadowbans on Twitter.

Shadowban Scanner क्या है?

Shadowban Scanner https://roboin.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension that detects shadowbans on Twitter."।

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        ## Features

- Detects shadowbans and sensitive flags per account
- Detects sensitive flags for profile media (icon and header image)
- Detects countries that block accounts for legal reasons
- Detects sensitive flags per tweet
- Detects age restrictions on tweets
- Adds buttons to show hidden tweets

## Accuracy

When it comes to detecting shadowbans on an account level, like many other tools, there can be instances of false positives and false negatives. However, when it comes to detecting sensitive flags and age restrictions on a tweet level, it can be almost perfectly accurate. Therefore, it is recommended to use Shadowban Scanner to continuously monitor the status of your account and tweets, while also utilizing other tools alongside it.

## Privacy Policy

As a rule, this extension performs all processing on the user's computer. No data is transmitted to an external server. It also does not access Twitter's internal API by obtaining the user's credentials without permission, as is the case with some extensions. Web pages not bundled in this extension are subject to their own terms of use and privacy policies.

## License

This extension is released under the MIT License.                    

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

नाम Shadowban Scanner Shadowban Scanner
ID enlganfikppbjhabhkkilafmkhifadjd
आधिकारिक URL https://chromewebstore.google.com/detail/shadowban-scanner/enlganfikppbjhabhkkilafmkhifadjd
विवरण A browser extension that detects shadowbans on Twitter.
फ़ाइल का आकार 127 KB
स्थापना संख्या 6,433
वर्तमान संस्करण 3.1.2
अंतिम अपडेट 2024-02-06
प्रकाशन तिथि 2023-06-09
रेटिंग 4.22/5 कुल 9 रेटिंग्स
डेवलपर https://roboin.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://roboin.io/shadowban-scanner/en/
सहायता पृष्ठ URL https://github.com/Robot-Inventor/shadowban-scanner
गोपनीयता नीति पृष्ठ URL https://github.com/Robot-Inventor/shadowban-scanner
समर्थित भाषाएँ en,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Shadowban Scanner",
    "short_name": "Shadowban Scanner",
    "version": "3.1.2",
    "description": "__MSG_manifest_description__",
    "icons": {
        "16": "dist\/image\/icon16.png",
        "48": "dist\/image\/icon48.png",
        "128": "dist\/image\/icon128.png"
    },
    "host_permissions": [
        "https:\/\/*.twitter.com\/*",
        "https:\/\/*.x.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.x.com\/*"
            ],
            "js": [
                "dist\/js\/contentScript.js"
            ],
            "css": [
                "dist\/css\/style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "dist\/js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/js\/pageScript.js",
                "dist\/image\/*"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.x.com\/*"
            ]
        }
    ],
    "default_locale": "en",
    "action": {
        "default_icon": {
            "16": "dist\/image\/icon16.png",
            "48": "dist\/image\/icon48.png",
            "128": "dist\/image\/icon128.png"
        },
        "default_popup": "dist\/html\/browserAction.html",
        "default_title": "Shadowban Scanner"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{8fee6fa8-6d95-4b9e-9c51-324c207fabff}"
        },
        "gecko_android": []
    }
}