Scroll Buddy
This extension allows you to automate page scrolling
What is Scroll Buddy?
Scroll Buddy is a Chrome extension developed by otoinsa, and its main feature is "This extension allows you to automate page scrolling".
Extension Screenshots
Download Scroll Buddy Extension CRX File
Download Scroll Buddy 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
Reading a book online or just tired of scrolling? The usual auto-scroll plugins just ain't cutting it? Scroll Buddy is here for you. Control how many pixels to scroll with each line scrolled Control the timeframe for scroll motion using milliseconds ( 1000 miliseconds = 1 second) Right click menu to start/stop scrolling for convenience Simple, elegant interface Also the browser toolbar popup closes and starts scrolling when you hit the enter key regardless of focused element.
Extension Basic Information
Name | Scroll Buddy |
ID | iijemcphocnlembodanflickfiafjnmk |
Official URL | https://chromewebstore.google.com/detail/scroll-buddy/iijemcphocnlembodanflickfiafjnmk |
Description | This extension allows you to automate page scrolling |
File Size | 1.85 MB |
Installation Count | 1,058 |
Current Version | 1.1 |
Last Updated | 2023-12-29 |
Publish Date | 2017-10-30 |
Rating | 4.94/5 Total 18 Ratings |
Developer | otoinsa |
[email protected] | |
Payment Type | free |
Extension Website | http://digital-ninja.xyz |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "offline_enabled": true, "name": "Scroll Buddy", "description": "This extension allows you to automate page scrolling", "version": "1.1", "browser_action": { "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "background.js", "contextMenus.js" ] }, "permissions": [ "notifications", "storage", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon\/icon16.png", "32": "icon\/icon32.png", "48": "icon\/icon48.png", "64": "icon\/icon64.png", "128": "icon\/icon128.png" }, "web_accessible_resources": [ "icon\/icon48.png", "missing-values.png" ] } |