Twitter Lazy Scroll
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
Cos'è Twitter Lazy Scroll?
Twitter Lazy Scroll è un'estensione di Chrome sviluppata da Shang Liang, e la sua funzione principale è "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Lazy Scroll
Scarica i file di estensione Twitter Lazy Scroll 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
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the sidebar.
Informazioni di Base sull'Estensione
Nome | Twitter Lazy Scroll |
ID | fkbneanchjmfmnbkbkfejifnjpjgnpif |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif |
Descrizione | Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar. |
Dimensione del File | 59.46 KB |
Conteggio Installazioni | 429 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2020-08-04 |
Data di Pubblicazione | 2020-08-04 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | Shang Liang |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |