Arrow Browse
Allows use of arrow keys to move to next and previous pages.
Arrow Browseとは何ですか?
Arrow Browseはbenjamin12gによって開発されたChromeの拡張機能で、その主な機能は「Allows use of arrow keys to move to next and previous pages.」です。
拡張機能のスクリーンショット
Arrow Browse拡張機能のCRXファイルをダウンロード
Arrow Browse拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | mmnojcmflanomipfjmbmnafphfcigage |
公式URL | https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage |
説明 | Allows use of arrow keys to move to next and previous pages. |
ファイルサイズ | 11.57 KB |
インストール数 | 25 |
現在のバージョン | 1.1.1 |
最終更新日 | 2015-02-12 |
公開日 | 2015-02-12 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | benjamin12g |
支払い方法 | free |
対応言語 | 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" ] } |