Remove Retweets
An Extension for removing retweets of given users on twitter.com
Τι είναι το Remove Retweets;
Το Remove Retweets είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον oiva.eskola, και η κύρια λειτουργία του είναι "An Extension for removing retweets of given users on twitter.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Remove Retweets
Λήψη αρχείων επέκτασης Remove Retweets σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | kpdjjfkdanbalgbghgmpiepnjkpokfoc |
Επίσημο URL | https://chrome.google.com/webstore/detail/remove-retweets/kpdjjfkdanbalgbghgmpiepnjkpokfoc |
Περιγραφή | An Extension for removing retweets of given users on twitter.com |
Μέγεθος Αρχείου | 103 KB |
Αριθμός Εγκαταστάσεων | 238 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2013-11-20 |
Ημερομηνία Δημοσίευσης | 2013-11-20 |
Αξιολόγηση | 2.36/5 Συνολικά 11 Αξιολογήσεις |
Προγραμματιστής | oiva.eskola |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } ] } |