Twitter Refresher
Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.
¿Qué es Twitter Refresher?
Twitter Refresher es una extensión de Chrome desarrollada por Cratos Design, y su función principal es "Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter Refresher
Descarga archivos de extensión Twitter Refresher 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
This will automatically click on the load new tweets but only if you are at the top of the page. Many of the other extensions will always click on it which causes you to scroll back to the top of the screen. This one takes into account where you are at the page and will only "click" the load link when you are at the top.
Información Básica de la Extensión
Nombre | Twitter Refresher |
ID | egbgccfgdplkmpddefhjihakjhlnmlhe |
URL Oficial | https://chromewebstore.google.com/detail/twitter-refresher/egbgccfgdplkmpddefhjihakjhlnmlhe |
Descripción | Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link. |
Tamaño del Archivo | 43.04 KB |
Cantidad de Instalaciones | 382 |
Versión Actual | 1.0 |
Última Actualización | 2015-03-27 |
Fecha de Publicación | 2015-03-27 |
Calificación | 3.40/5 Total de 5 Calificaciones |
Desarrollador | Cratos Design |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "page": "background.html" }, "content_scripts": [ { "all_frames": true, "js": [ "jquery-1.7.2.min.js", "functions.js" ], "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "run_at": "document_idle" } ], "description": "Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.", "icons": { "128": "images\/twitter.png", "48": "images\/twitter.png" }, "manifest_version": 2, "name": "Twitter Refresher", "permissions": [ "http:\/\/twitter.com\/", "https:\/\/twitter.com\/" ], "version": "1.0", "web_accessible_resources": [ "reload.js" ] } |