Key Surfer
Navigate websites without using your mouse.
Key Surfer là gì?
Key Surfer là một tiện ích mở rộng Chrome được phát triển bởi J Delaney, và tính năng chính của nó là "Navigate websites without using your mouse.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Key Surfer
Tải xuống các tệp mở rộng Key Surfer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | aabnolighedpdbhpipfohakmnbbepnkn |
URL Chính Thức | https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn |
Mô tả | Navigate websites without using your mouse. |
Kích Thước Tệp | 50.39 KB |
Số Lần Cài Đặt | 404 |
Phiên Bản Hiện Tại | 0.3.10 |
Cập Nhật Lần Cuối | 2017-03-02 |
Ngày Phát Hành | 2017-03-01 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | J Delaney |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/keysurfer/keysurfer |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |