Arrow Browse
Allows use of arrow keys to move to next and previous pages.
What is Arrow Browse?
Arrow Browse is a Chrome extension developed by benjamin12g, and its main feature is "Allows use of arrow keys to move to next and previous pages.".
Extension Screenshots
Download Arrow Browse Extension CRX File
Download Arrow Browse 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
Searches pages for links or buttons that contain some reference to "next" or "previous" and trigger those links/buttons on the pressing of the left or right arrow keys on the keyboard (left for previous, right for next). Its great for reading through tutorials, web comics, blogs, video blogs or really any content that comes in a linear series of pages.
Extension Basic Information
Name | |
ID | mmnojcmflanomipfjmbmnafphfcigage |
Official URL | https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage |
Description | Allows use of arrow keys to move to next and previous pages. |
File Size | 11.57 KB |
Installation Count | 25 |
Current Version | 1.1.1 |
Last Updated | 2015-02-12 |
Publish Date | 2015-02-12 |
Rating | 5.00/5 Total 3 Ratings |
Developer | benjamin12g |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Arrow Browse", "options_ui": { "page": "options.html", "chrome_style": true }, "description": "Allows use of arrow keys to move to next and previous pages.", "version": "1.1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon16.png", "default_title": "Arrow Browse", "default_popup": "extension.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ] } |