Remove Retweets
An Extension for removing retweets of given users on twitter.com
Cos'è Remove Retweets?
Remove Retweets è un'estensione di Chrome sviluppata da oiva.eskola, e la sua funzione principale è "An Extension for removing retweets of given users on twitter.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Remove Retweets
Scarica i file di estensione Remove Retweets 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
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!
Informazioni di Base sull'Estensione
Nome | |
ID | kpdjjfkdanbalgbghgmpiepnjkpokfoc |
URL Ufficiale | https://chrome.google.com/webstore/detail/remove-retweets/kpdjjfkdanbalgbghgmpiepnjkpokfoc |
Descrizione | An Extension for removing retweets of given users on twitter.com |
Dimensione del File | 103 KB |
Conteggio Installazioni | 238 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2013-11-20 |
Data di Pubblicazione | 2013-11-20 |
Valutazione | 2.36/5 Totale 11 Valutazioni |
Sviluppatore | oiva.eskola |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |