BlueLiteBlocker
Filter tweets from Twitter Blue users without having to block or mute them.
¿Qué es BlueLiteBlocker?
BlueLiteBlocker es una extensión de Chrome desarrollada por MalwareTech, y su función principal es "Filter tweets from Twitter Blue users without having to block or mute them.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión BlueLiteBlocker
Descarga archivos de extensión BlueLiteBlocker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | BlueLiteBlocker |
ID | gimbefnamedicgajjballjjhanhnpjce |
URL Oficial | https://chromewebstore.google.com/detail/blueliteblocker/gimbefnamedicgajjballjjhanhnpjce |
Descripción | Filter tweets from Twitter Blue users without having to block or mute them. |
Tamaño del Archivo | 39.73 KB |
Cantidad de Instalaciones | 3,766 |
Versión Actual | 0.0.0.9 |
Última Actualización | 2023-05-23 |
Fecha de Publicación | 2023-04-26 |
Calificación | 4.92/5 Total de 36 Calificaciones |
Desarrollador | MalwareTech |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/BlueLiteBlocker/BlueLiteBlocker |
URL de la Página de Ayuda | https://github.com/BlueLiteBlocker/BlueLiteBlocker/issues |
Idiomas Soportados | 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" ] } ] } |