Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Cos'è Twitter Timeline Auto Update?
Twitter Timeline Auto Update è un'estensione di Chrome sviluppata da https://systemcluster.me, e la sua funzione principale è "Updates the twitter timeline automatically when new tweets can be shown.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Timeline Auto Update
Scarica i file di estensione Twitter Timeline Auto Update 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
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.
Informazioni di Base sull'Estensione
Nome | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Descrizione | Updates the twitter timeline automatically when new tweets can be shown. |
Dimensione del File | 23.5 KB |
Conteggio Installazioni | 1,085 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2018-07-28 |
Data di Pubblicazione | 2018-07-28 |
Valutazione | 3.33/5 Totale 9 Valutazioni |
Sviluppatore | https://systemcluster.me |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } |