Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
What is Auto Scroll Extension?
Auto Scroll Extension is a Chrome extension developed by https://071yoon.github.io, and its main feature is "Auto Scroller for Chrome to help user scroll automatically".
Extension Screenshots
Download Auto Scroll Extension Extension CRX File
Download Auto Scroll Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Auto Scroll Extension |
ID | ppkbgpllhklbjlmmncjjgogcdphkaaho |
Official URL | https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho |
Description | Auto Scroller for Chrome to help user scroll automatically |
File Size | 84.15 KB |
Installation Count | 383 |
Current Version | 1.0.2 |
Last Updated | 2023-09-05 |
Publish Date | 2023-09-04 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://071yoon.github.io |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |