Sentinel
Clean up the BS from your social media feed
O que é Sentinel?
Sentinel é uma extensão do Chrome desenvolvida por AliTeshnizi, e sua principal característica é "Clean up the BS from your social media feed".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sentinel
Baixe arquivos de extensão Sentinel no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Sentinel |
ID | fkmbhpipdlamijgojpjflhonefdgaehj |
URL Oficial | https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj |
Descrição | Clean up the BS from your social media feed |
Tamanho do Arquivo | 45.11 KB |
Contagem de Instalações | 48 |
Versão Atual | 0.4 |
Última Atualização | 2023-09-09 |
Data de Publicação | 2023-08-21 |
Classificação | 5.00/5 Total de 6 Avaliações |
Desenvolvedor | AliTeshnizi |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/teshnizi/Sentinel |
Idiomas Suportados | 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 } } |