Twitter Blocker

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

Qu'est-ce que Twitter Blocker ?

Twitter Blocker est une extension Chrome développée par https://obodugo.com, et sa fonction principale est "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitter Blocker

Téléchargez les fichiers d'extension Twitter Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Twitter Blocker Twitter Blocker
ID hifjjlinjpddohocbhfifpaopdfnfadl
URL Officiel https://chrome.google.com/webstore/detail/twitter-blocker/hifjjlinjpddohocbhfifpaopdfnfadl
Description Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.
Taille du Fichier 639 KB
Nombre d'Installations 79
Version Actuelle 1.0
Dernière Mise à Jour 2020-06-21
Date de Publication 2020-06-21
Développeur https://obodugo.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://obodugo.com
URL de la Page d'Aide https://twitter.com/djunehor
URL de la Page de Politique de Confidentialité https://shagital.com
Langues Prises en Charge 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
    }
}