Chirp Silencer
Mute unwanted tweets from your timeline
O que é Chirp Silencer?
Chirp Silencer é uma extensão do Chrome desenvolvida por https://chirpsilencer.com, e sua principal característica é "Mute unwanted tweets from your timeline".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Chirp Silencer
Baixe arquivos de extensão Chirp Silencer 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
Tired of all the noise on Twitter / X? So are we. With our browser extension, you can easily add dozens of words to your mute list and finally have a readable news feed without the fuss. We do not collect or store any personal information. Even your lists are yours. Want to store them on Github Gist? No problem! Prefer Pastebin? That's fine too. As long as your lists follow the required syntax and are available, we'll do the rest.
Informações Básicas da Extensão
Nome | Chirp Silencer |
ID | hfmapnknalalilhipleaejemjckikadp |
URL Oficial | https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp |
Descrição | Mute unwanted tweets from your timeline |
Tamanho do Arquivo | 15.03 KB |
Contagem de Instalações | 37 |
Versão Atual | 0.1 |
Última Atualização | 2023-08-22 |
Data de Publicação | 2023-08-22 |
Desenvolvedor | https://chirpsilencer.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.chirpsilencer.com |
URL da Página de Ajuda | https://www.chirpsilencer.com |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chirp Silencer", "description": "Mute unwanted tweets from your timeline", "version": "0.1", "manifest_version": 3, "background": { "service_worker": "\/scripts\/background.js", "type": "module" }, "action": { "default_icon": "\/images\/logo.png" }, "permissions": [ "activeTab", "scripting" ], "icons": { "16": "\/images\/logo.png", "48": "\/images\/logo.png", "128": "\/images\/logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/settings\/add_muted_keyword", "https:\/\/*.x.com\/settings\/add_muted_keyword" ], "js": [ "\/scripts\/content.js" ], "css": [ "\/styles\/content.css" ], "run_at": "document_idle" } ] } |