Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Τι είναι το Twitter Timeline Auto Update;
Το Twitter Timeline Auto Update είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://systemcluster.me, και η κύρια λειτουργία του είναι "Updates the twitter timeline automatically when new tweets can be shown.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitter Timeline Auto Update
Λήψη αρχείων επέκτασης Twitter Timeline Auto Update σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Twitter Auto Update updates the twitter timeline automatically, removing the need of the additional user interaction each time new tweets should be shown. By default the extension only updates the timeline while it isn't scrolled down, an option is provided to enable unconditional updates.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
Επίσημο URL | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Περιγραφή | Updates the twitter timeline automatically when new tweets can be shown. |
Μέγεθος Αρχείου | 23.5 KB |
Αριθμός Εγκαταστάσεων | 1,085 |
Τρέχουσα Έκδοση | 0.3 |
Τελευταία Ενημέρωση | 2018-07-28 |
Ημερομηνία Δημοσίευσης | 2018-07-28 |
Αξιολόγηση | 3.33/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | https://systemcluster.me |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Timeline Auto Update", "short_name": "Twitter Refresh", "description": "Updates the twitter timeline automatically when new tweets can be shown.", "version": "0.3", "options_ui": { "page": "chrome\/content\/settings_inline.html", "chrome_style": true }, "icons": { "64": "chrome\/skin\/icon64.png", "128": "chrome\/skin\/icon128.png", "256": "chrome\/skin\/icon256.png" }, "background": { "scripts": [ "lib\/background.js" ] }, "content_scripts": [ { "js": [ "lib\/inject.js" ], "matches": [ "*:\/\/twitter.com\/*" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/twitter.com\/*" ] } |