Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
O que é Auto Scroll Extension?
Auto Scroll Extension é uma extensão do Chrome desenvolvida por https://071yoon.github.io, e sua principal característica é "Auto Scroller for Chrome to help user scroll automatically".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Auto Scroll Extension
Baixe arquivos de extensão Auto Scroll Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Auto Scroll Extension |
ID | ppkbgpllhklbjlmmncjjgogcdphkaaho |
URL Oficial | https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho |
Descrição | Auto Scroller for Chrome to help user scroll automatically |
Tamanho do Arquivo | 84.15 KB |
Contagem de Instalações | 383 |
Versão Atual | 1.0.2 |
Última Atualização | 2023-09-05 |
Data de Publicação | 2023-09-04 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://071yoon.github.io |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |