Twitter TW Blocker

Blur the tweets containing a trigger warning

Twitter TW Blocker क्या है?

Twitter TW Blocker tymmesyde द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blur the tweets containing a trigger warning"।

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

screenshot

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

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

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

                        Use Twitter TW Blocker if you want to hide the tweets that have a trigger warning pattern (e.g. TW // content).
Just click on the tweet if you want to remove the warning.                    

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

नाम Twitter TW Blocker Twitter TW Blocker
ID cmgnaiadimhcfkmfehdbindohbenemnk
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-tw-blocker/cmgnaiadimhcfkmfehdbindohbenemnk
विवरण Blur the tweets containing a trigger warning
फ़ाइल का आकार 15 KB
स्थापना संख्या 19
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-08-09
प्रकाशन तिथि 2020-08-09
डेवलपर tymmesyde
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter TW Blocker",
    "description": "Blur the tweets containing a trigger warning",
    "version": "1.0",
    "icons": {
        "16": "src\/images\/icon_16.png",
        "32": "src\/images\/icon_32.png",
        "48": "src\/images\/icon_48.png",
        "128": "src\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "src\/styles\/content.css"
            ],
            "js": [
                "src\/scripts\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/styles\/content.css"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "src\/images\/icon_16.png",
            "32": "src\/images\/icon_32.png",
            "48": "src\/images\/icon_48.png",
            "128": "src\/images\/icon_128.png"
        }
    }
}