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 |
| 官方網址 | 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"
]
}
]
} | |