Previous and Next page keyboard navigation
Allows you to navigate any paged website using the left and right keyboard keys.
Previous and Next page keyboard navigationとは何ですか?
Previous and Next page keyboard navigationはmanticorp1234によって開発されたChromeの拡張機能で、その主な機能は「Allows you to navigate any paged website using the left and right keyboard keys.」です。
拡張機能のスクリーンショット
Previous and Next page keyboard navigation拡張機能のCRXファイルをダウンロード
Previous and Next page keyboard navigation拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extensions basically allows you to navigate any paginated website just using the left and right keys. Very simple app, to turn off just click the icon in the top right. Open source, code hosted here: https://github.com/manticorp/Chrome-Keyboard-Navigation If you have any suggestions, bugs or you know of sites that don't work, then file a bug report on the github page or contact me through there.
拡張機能の基本情報
名前 | Previous and Next page keyboard navigation |
ID | bgddcngmfadknajipncoemekkikibfhg |
公式URL | https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg |
説明 | Allows you to navigate any paged website using the left and right keyboard keys. |
ファイルサイズ | 44.05 KB |
インストール数 | 696 |
現在のバージョン | 0.43 |
最終更新日 | 2016-04-10 |
公開日 | 2016-04-10 |
評価 | 4.12/5 合計 25 レビュー |
開発者 | manticorp1234 |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/manticorp/Chrome-Keyboard-Navigation |
ヘルプページのURL | https://github.com/manticorp/Chrome-Keyboard-Navigation |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Previous and Next page keyboard navigation", "short_name": "Prev\/Next Keys", "description": "Allows you to navigate any paged website using the left and right keyboard keys.", "author": "Harry Mustoe-Playfair", "version": "0.43", "browser_action": { "default_icon": "icon.png", "default_title": "Toggle Keyboard Navigation" }, "permissions": [ "storage" ], "background": { "page": "background.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery.js", "content_script.js" ], "run_at": "document_idle" } ], "options_page": "options.html" } |