Key Surfer
Navigate websites without using your mouse.
Key Surferとは何ですか?
Key SurferはJ Delaneyによって開発されたChromeの拡張機能で、その主な機能は「Navigate websites without using your mouse.」です。
拡張機能のスクリーンショット
Key Surfer拡張機能のCRXファイルをダウンロード
Key Surfer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Click on links without your hands leaving your keyboard! To use: 1. Type shift+space 2. Type in the link you want to click 3. Use the up/down arrow keys to select which link you want to click 4. Press enter to click it! This project is open source as well! https://github.com/keysurfer/keysurfer
拡張機能の基本情報
名前 | |
ID | aabnolighedpdbhpipfohakmnbbepnkn |
公式URL | https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn |
説明 | Navigate websites without using your mouse. |
ファイルサイズ | 50.39 KB |
インストール数 | 404 |
現在のバージョン | 0.3.10 |
最終更新日 | 2017-03-02 |
公開日 | 2017-03-01 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | J Delaney |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/keysurfer/keysurfer |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Key Surfer", "version": "0.3.10", "manifest_version": 2, "description": "Navigate websites without using your mouse.", "options_ui": { "page": "src\/options\/index.html", "chrome_style": true }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "storage" ], "optional_permissions": [ "file:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/mousetrap.min.js", "js\/underscore.min.js", "js\/jquery.min.js", "src\/inject\/overlay.js", "src\/inject\/inject.js" ] } ] } |