Twitter Blocker

Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.

Twitter Blocker क्या है?

Twitter Blocker https://obodugo.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline."।

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

screenshot
screenshot
screenshot

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

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

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

                        Twitter Blocker helps you reduce the noise on your timeline. 
Ever encountered muting a tweet, hashtag or whatsoever on twitter,  but still see them popping up on the TL one way or the other? Well, this removes it entirely from the page so you don't get to see it again.

So What can i block using Twitter Blocker 🤔

- Tweets
- Tweets by Category
- Hashtags
- Tweets by Location

Hopefully this helps you maintain a good level of sanity on your TL :)
Experience any issue whilst using the extension, quickly buzz us using the support links on the page, and we would get on it ASAP.                    

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

नाम Twitter Blocker Twitter Blocker
ID hifjjlinjpddohocbhfifpaopdfnfadl
आधिकारिक URL https://chrome.google.com/webstore/detail/twitter-blocker/hifjjlinjpddohocbhfifpaopdfnfadl
विवरण Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.
फ़ाइल का आकार 639 KB
स्थापना संख्या 79
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-06-21
प्रकाशन तिथि 2020-06-21
डेवलपर https://obodugo.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://obodugo.com
सहायता पृष्ठ URL https://twitter.com/djunehor
गोपनीयता नीति पृष्ठ URL https://shagital.com
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter  Blocker",
    "description": "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.",
    "version": "1.0",
    "short_name": "RecordRTC",
    "author": "Obodugo Rapheal, Zacchaeus Bolaji",
    "manifest_version": 2,
    "minimum_chrome_version": "49",
    "homepage_url": "https:\/\/obodugo.com",
    "icons": {
        "16": "icon.png",
        "22": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "script.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Twitter Blocker",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}