Remove Retweets
An Extension for removing retweets of given users on twitter.com
O que é Remove Retweets?
Remove Retweets é uma extensão do Chrome desenvolvida por oiva.eskola, e sua principal característica é "An Extension for removing retweets of given users on twitter.com".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Remove Retweets
Baixe arquivos de extensão Remove 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
Follow someone on Twitter because you like them but hate everything they retweet? Then this is the extension for you. This extension will let you specify Twitter users whose retweets you don't want to see. Their retweets will then be filtered from the main timeline and their user pages. Follow people for what they tweet, not what they retweet!
Informações Básicas da Extensão
Nome | |
ID | kpdjjfkdanbalgbghgmpiepnjkpokfoc |
URL Oficial | https://chrome.google.com/webstore/detail/remove-retweets/kpdjjfkdanbalgbghgmpiepnjkpokfoc |
Descrição | An Extension for removing retweets of given users on twitter.com |
Tamanho do Arquivo | 103 KB |
Contagem de Instalações | 238 |
Versão Atual | 1.0 |
Última Atualização | 2013-11-20 |
Data de Publicação | 2013-11-20 |
Classificação | 2.36/5 Total de 11 Avaliações |
Desenvolvedor | oiva.eskola |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Retweets", "description": "An Extension for removing retweets of given users on twitter.com", "version": "1.0", "permissions": [ "https:\/\/twitter.com\/", "storage", "activeTab" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon48.png", "38": "img\/icon48.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" } ] } |