Hide Retweets
Remove retweets by specific users or everyone on Twitter
O que é Hide Retweets?
Hide Retweets é uma extensão do Chrome desenvolvida por Kevin Leutzinger, e sua principal característica é "Remove retweets by specific users or everyone on Twitter".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hide Retweets
Baixe arquivos de extensão Hide Retweets 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
Got a friend who retweets too much? Hide/Block/Remove retweets from a specific list of users, or hide everyone's retweets. Retweets are collapsed and can be viewed if clicked. Source: https://github.com/kleutzinger/Hide-Retweets-Extension
Informações Básicas da Extensão
Nome | |
ID | iehhaigbokpilpilegajanpckfgbegdm |
URL Oficial | https://chrome.google.com/webstore/detail/hide-retweets/iehhaigbokpilpilegajanpckfgbegdm |
Descrição | Remove retweets by specific users or everyone on Twitter |
Tamanho do Arquivo | 334 KB |
Contagem de Instalações | 89 |
Versão Atual | 0.2 |
Última Atualização | 2018-02-07 |
Data de Publicação | 2018-02-07 |
Classificação | 2.09/5 Total de 11 Avaliações |
Desenvolvedor | Kevin Leutzinger |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Retweets", "description": "Remove retweets by specific users or everyone on Twitter", "version": "0.2", "permissions": [ "https:\/\/twitter.com\/", "storage", "activeTab" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon16.png", "48": "img\/icon48.png", "64": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "img\/icon128.png", "js\/underscore-1.5.2.min.map" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/underscore-1.5.2.min.js", "js\/content.js" ], "run_at": "document_end" } ] } |