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" ] } ] } |