Twitter Lazy Scroll
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
¿Qué es Twitter Lazy Scroll?
Twitter Lazy Scroll es una extensión de Chrome desarrollada por Shang Liang, y su función principal es "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter Lazy Scroll
Descarga archivos de extensión Twitter Lazy Scroll 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
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the sidebar.
Información Básica de la Extensión
Nombre | Twitter Lazy Scroll |
ID | fkbneanchjmfmnbkbkfejifnjpjgnpif |
URL Oficial | https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif |
Descripción | Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar. |
Tamaño del Archivo | 59.46 KB |
Cantidad de Instalaciones | 429 |
Versión Actual | 0.0.2 |
Última Actualización | 2020-08-04 |
Fecha de Publicación | 2020-08-04 |
Calificación | 3.67/5 Total de 3 Calificaciones |
Desarrollador | Shang Liang |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Lazy Scroll", "version": "0.0.2", "manifest_version": 2, "description": "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png" }, "permissions": [ "https:\/\/twitter.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "injection.js", "hud.css" ], "background": { "scripts": [ "background.js" ] } } |