BlueLiteBlocker
Filter tweets from Twitter Blue users without having to block or mute them.
Cos'è BlueLiteBlocker?
BlueLiteBlocker è un'estensione di Chrome sviluppata da MalwareTech, e la sua funzione principale è "Filter tweets from Twitter Blue users without having to block or mute them.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BlueLiteBlocker
Scarica i file di estensione BlueLiteBlocker 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
Hide tweets from Twitter Blue users you don't follow without needing to mute or block them. Customizable to allow tweets from accounts with more than a set number of followers. Follow @BlueLiteBlocker on Twitter for Updates/Support.
Informazioni di Base sull'Estensione
Nome | BlueLiteBlocker |
ID | gimbefnamedicgajjballjjhanhnpjce |
URL Ufficiale | https://chromewebstore.google.com/detail/blueliteblocker/gimbefnamedicgajjballjjhanhnpjce |
Descrizione | Filter tweets from Twitter Blue users without having to block or mute them. |
Dimensione del File | 39.73 KB |
Conteggio Installazioni | 3,766 |
Versione Corrente | 0.0.0.9 |
Ultimo Aggiornamento | 2023-05-23 |
Data di Pubblicazione | 2023-04-26 |
Valutazione | 4.92/5 Totale 36 Valutazioni |
Sviluppatore | MalwareTech |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/BlueLiteBlocker/BlueLiteBlocker |
URL della Pagina di Aiuto | https://github.com/BlueLiteBlocker/BlueLiteBlocker/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BlueLiteBlocker", "version": "0.0.0.9", "description": "Filter tweets from Twitter Blue users without having to block or mute them.", "icons": { "48": "icons\/logo-48.png", "128": "icons\/logo-128.png" }, "options_ui": { "page": "settings.html", "browser_style": true }, "action": { "default_area": "navbar", "default_icon": { "128": "icons\/logo-128.png" }, "default_popup": "settings.html" }, "permissions": [ "storage" ], "browser_specific_settings": { "gecko": { "id": "[email protected]", "strict_min_version": "57.0" } }, "web_accessible_resources": [ { "resources": [ "xhr_hook.js" ], "matches": [ "*:\/\/*.twitter.com\/*" ] } ], "background": { "service_worker": "extension.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "run_at": "document_start", "js": [ "injector.js" ] } ] } |