Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
¿Qué es Twitter Timeline Auto Update?
Twitter Timeline Auto Update es una extensión de Chrome desarrollada por https://systemcluster.me, y su función principal es "Updates the twitter timeline automatically when new tweets can be shown.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter Timeline Auto Update
Descarga archivos de extensión Twitter Timeline Auto Update en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
URL Oficial | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Descripción | Updates the twitter timeline automatically when new tweets can be shown. |
Tamaño del Archivo | 23.5 KB |
Cantidad de Instalaciones | 1,085 |
Versión Actual | 0.3 |
Última Actualización | 2018-07-28 |
Fecha de Publicación | 2018-07-28 |
Calificación | 3.33/5 Total de 9 Calificaciones |
Desarrollador | https://systemcluster.me |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } |