Arrow Browse
Allows use of arrow keys to move to next and previous pages.
Co je Arrow Browse?
Arrow Browse je rozšíření Chrome vyvinuté benjamin12g, a jeho hlavní funkcí je „Allows use of arrow keys to move to next and previous pages.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Arrow Browse
Stáhněte si soubory rozšíření Arrow Browse ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | mmnojcmflanomipfjmbmnafphfcigage |
Oficiální URL | https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage |
Popis | Allows use of arrow keys to move to next and previous pages. |
Velikost souboru | 11.57 KB |
Počet instalací | 25 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2015-02-12 |
Datum Vydání | 2015-02-12 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | benjamin12g |
Typ Platby | free |
Podporované Jazyky | 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" ] } |