Sentinel
Clean up the BS from your social media feed
¿Qué es Sentinel?
Sentinel es una extensión de Chrome desarrollada por AliTeshnizi, y su función principal es "Clean up the BS from your social media feed".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Sentinel
Descarga archivos de extensión Sentinel 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
Sentinel is an open source chrome plugin that allows you to apply custom filters to the posts you see on LinkedIn, Twitter, Instagram, and soon other major social media!
Información Básica de la Extensión
Nombre | Sentinel |
ID | fkmbhpipdlamijgojpjflhonefdgaehj |
URL Oficial | https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj |
Descripción | Clean up the BS from your social media feed |
Tamaño del Archivo | 45.11 KB |
Cantidad de Instalaciones | 48 |
Versión Actual | 0.4 |
Última Actualización | 2023-09-09 |
Fecha de Publicación | 2023-08-21 |
Calificación | 5.00/5 Total de 6 Calificaciones |
Desarrollador | AliTeshnizi |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/teshnizi/Sentinel |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Sentinel", "version": "0.4", "description": "Clean up the BS from your social media feed", "icons": { "64": "icon512.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*", "https:\/\/linkedin.com\/*" ], "js": [ "linkedin.js" ] }, { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/x.com\/*", "https:\/\/www.x.com\/*" ], "js": [ "twitter.js" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |