One Click Up Down Scroll
Extension name speaks for itself.
What is One Click Up Down Scroll?
One Click Up Down Scroll is a Chrome extension developed by Pavel Babin, and its main feature is "Extension name speaks for itself.".
Extension Screenshots
Download One Click Up Down Scroll Extension CRX File
Download One Click Up Down Scroll 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
This extension allows one-click scrolling to move the page up or down depending on the position of scroll. ... After installing do not forget to restart your browser. Extension does not work on the site chrome.google.com.
Extension Basic Information
Name | One Click Up Down Scroll |
ID | egoagpgalbiedhkmifjadcgocefhofha |
Official URL | https://chromewebstore.google.com/detail/one-click-up-down-scroll/egoagpgalbiedhkmifjadcgocefhofha |
Description | Extension name speaks for itself. |
File Size | 5.81 KB |
Installation Count | 471 |
Current Version | 1.2 |
Last Updated | 2014-11-22 |
Publish Date | 2014-11-22 |
Rating | 3.00/5 Total 8 Ratings |
Developer | Pavel Babin |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "One Click Up Down Scroll", "short_name": "UpDownScroll", "description": "Extension name speaks for itself.", "version": "1.2", "background": { "scripts": [ "background.js" ] }, "browser_action": { "name": "Up Down Scroll" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon_16.png", "128": "icon_128.png" }, "manifest_version": 2 } |