DoucheBlock for Twitter

Automatically block anyone with specific keywords in their Twitter bio.

DoucheBlock for Twitter क्या है?

DoucheBlock for Twitter https://oss.mobilefirst.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically block anyone with specific keywords in their Twitter bio."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        DoucheBlock is like an ad blocker but for your Twitter timeline. It will automatically (or after confirmation) block people who use specific keywords in the Twitter bio. Currently DoucheBlock for Twitter comes with following awesome features:

✅ Automatic or manual blocking
✅ Customizable "trigger word" list
✅ Regex keyword matching
✅ Whitelist 
🛡️ 100% privacy
🚫 no ads or tracking

After installation setup your keywords then browse Twitter as before. The extension will pick up the current user identity on the fly and start watching your timeline for users who match your block criteria. 

DoucheBlock does not contain any tracking and does not interact with any 3rd party servers. DoucheBlock for Twitter is open source! View source code on Github:
https://github.com/MobileFirstLLC/doucheblock
 
PRIVACY
=======
This extension runs on top of twitter web client. It runs 100% on the client. This extension includes no tracking, no analytics, no 3rd party servers and no remote code. Extension does not persist any personal information about user (everything is in runtime memory) and user preferences are cleared immediately and automatically on extension uninstall.                    

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

नाम DoucheBlock for Twitter DoucheBlock for Twitter
ID eeledoologbepiegnccedjigjkblhmhi
आधिकारिक URL https://chromewebstore.google.com/detail/doucheblock-for-twitter/eeledoologbepiegnccedjigjkblhmhi
विवरण Automatically block anyone with specific keywords in their Twitter bio.
फ़ाइल का आकार 27.58 KB
स्थापना संख्या 1,042
वर्तमान संस्करण 1.3.1
अंतिम अपडेट 2021-09-14
प्रकाशन तिथि 2021-02-17
रेटिंग 3.61/5 कुल 23 रेटिंग्स
डेवलपर https://oss.mobilefirst.me
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/MobileFirstLLC/doucheblock
सहायता पृष्ठ URL https://github.com/MobileFirstLLC/doucheblock/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/github.com\/MobileFirstLLC\/doucheblock",
    "version": "1.3.1",
    "manifest_version": 2,
    "default_locale": "en",
    "minimum_chrome_version": "31",
    "permissions": [
        "webRequest",
        "storage",
        "https:\/\/*.twitter.com\/*"
    ],
    "icons": {
        "128": "assets\/128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/twitter.com\/settings\/blocked\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "assets\/16x16.png",
            "24": "assets\/24x24.png",
            "32": "assets\/32x32.png"
        },
        "default_title": "__MSG_appName__"
    },
    "incognito": "split",
    "options_page": "index.html"
}