Sentinel
Clean up the BS from your social media feed
Cos'è Sentinel?
Sentinel è un'estensione di Chrome sviluppata da AliTeshnizi, e la sua funzione principale è "Clean up the BS from your social media feed".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Sentinel
Scarica i file di estensione Sentinel 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
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!
Informazioni di Base sull'Estensione
Nome | Sentinel |
ID | fkmbhpipdlamijgojpjflhonefdgaehj |
URL Ufficiale | https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj |
Descrizione | Clean up the BS from your social media feed |
Dimensione del File | 45.11 KB |
Conteggio Installazioni | 48 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2023-09-09 |
Data di Pubblicazione | 2023-08-21 |
Valutazione | 5.00/5 Totale 6 Valutazioni |
Sviluppatore | AliTeshnizi |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/teshnizi/Sentinel |
Lingue Supportate | 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 } } |