Scroll Speed
Change the scroll speed
What is Scroll Speed?
Scroll Speed is a Chrome extension developed by Bert Hekman, and its main feature is "Change the scroll speed".
Extension Screenshots
Download Scroll Speed Extension CRX File
Download Scroll Speed 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
Change the scrolling speed of the mouse wheel
Extension Basic Information
Name | Scroll Speed |
ID | mfmhdfkinffhnfhaalnabffcfjgcmdhl |
Official URL | https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl |
Description | Change the scroll speed |
File Size | 10.95 KB |
Installation Count | 3,683 |
Current Version | 0.1 |
Last Updated | 2020-04-27 |
Publish Date | 2020-04-23 |
Rating | 4.28/5 Total 29 Ratings |
Developer | Bert Hekman |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/DemonTPx/chrome-scroll-speed |
Help Page URL | https://github.com/DemonTPx/chrome-scroll-speed/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scroll Speed", "version": "0.1", "description": "Change the scroll speed", "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ], "exclude_globs": [ "*.pdf" ], "run_at": "document_start" } ], "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png" }, "manifest_version": 2 } |