Twitter Blocker
Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.
Cos'è Twitter Blocker?
Twitter Blocker è un'estensione di Chrome sviluppata da https://obodugo.com, e la sua funzione principale è "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Blocker
Scarica i file di estensione Twitter Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | hifjjlinjpddohocbhfifpaopdfnfadl |
URL Ufficiale | https://chrome.google.com/webstore/detail/twitter-blocker/hifjjlinjpddohocbhfifpaopdfnfadl |
Descrizione | Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline. |
Dimensione del File | 639 KB |
Conteggio Installazioni | 79 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-06-21 |
Data di Pubblicazione | 2020-06-21 |
Sviluppatore | https://obodugo.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://obodugo.com |
URL della Pagina di Aiuto | https://twitter.com/djunehor |
URL della Pagina della Politica sulla Privacy | https://shagital.com |
Lingue Supportate | 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 } } |