No pointer
This extension allows you to use your browser without a mouse.
什么是No pointer?
No pointer是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to use your browser without a mouse.”。
扩展截图
下载No pointer扩展crx文件
下载No pointer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Mouseless browsing! Yes! Throw away your mouse. You don't need it to browse the internet anymore! Press ctrl+shift+a to show keyboard shortcuts to links. Press any of the keys on screen to go to that link. Press ctrl+shift+a again to show shortcuts to the next batch of links. Press ctrl+alt+a to show keyboard shortcuts to links. Opens in a new tab. Press ctrl+alt+a again to show shortcuts to the next batch of links. Press ctrl+shift+s to show keyboard shortcuts to inputs. Press any of the keys on screen to set focus to that input. Note: This is by no means a finished product. It is super experimental. While it probably won't break anything, i'm sure there's bugs in there and not all websites will be supported. Feel free to report any bugs to me. Github repo: https://github.com/c00/no-pointer
扩展基本信息
名称 | No pointer |
ID | hfphokgchjldfbhppbpechglfmonbdcm |
官方URL | https://chromewebstore.google.com/detail/no-pointer/hfphokgchjldfbhppbpechglfmonbdcm |
简介 | This extension allows you to use your browser without a mouse. |
文件大小 | 48.72 KB |
安装次数 | 68 |
当前版本 | 0.1 |
更新时间 | 2017-08-15 |
上架时间 | 2017-08-13 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "No pointer", "description": "This extension allows you to use your browser without a mouse.", "version": "0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "content.css" ], "js": [ "jquery-3.2.1.min.js", "mousetrap.js", "content.js" ] } ] } |