Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
Cos'è Auto Scroll Extension?
Auto Scroll Extension è un'estensione di Chrome sviluppata da https://071yoon.github.io, e la sua funzione principale è "Auto Scroller for Chrome to help user scroll automatically".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Auto Scroll Extension
Scarica i file di estensione Auto Scroll Extension 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
Auto Scroller for Chrome for automation This Extension helps user to use scroller as automation form. for example, if you are using a two monitors at once and want one monitor to scroll down automatically, this extension will do! And in addition, extension remembers your last option for scrolling, and will remain as that option.
Informazioni di Base sull'Estensione
Nome | Auto Scroll Extension |
ID | ppkbgpllhklbjlmmncjjgogcdphkaaho |
URL Ufficiale | https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho |
Descrizione | Auto Scroller for Chrome to help user scroll automatically |
Dimensione del File | 84.15 KB |
Conteggio Installazioni | 383 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2023-09-05 |
Data di Pubblicazione | 2023-09-04 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://071yoon.github.io |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Scroll Extension", "description": "Auto Scroller for Chrome to help user scroll automatically", "manifest_version": 3, "version": "1.0.2", "permissions": [ "activeTab", "scripting", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |