KeyboardShortcuts
Add Keyboard Shortcuts to Web Applications
什么是KeyboardShortcuts?
KeyboardShortcuts是由farleigh开发的Chrome扩展程序,该扩展的主要功能是“Add Keyboard Shortcuts to Web Applications”。
扩展截图
下载KeyboardShortcuts扩展crx文件
下载KeyboardShortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add custom keyboard shortcuts (hotkeys) to specific web applications using a small flexible language. Currently supports commands including copying content into the clipboard, clicking, touching, opening new pages, focusing on elements, hiding elements on the page and setting content. 扩展基本信息
| 名称 | |
| ID | oiigclempgcopbccpbibeembdmbenpce |
| 官方URL | https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce |
| 简介 | Add Keyboard Shortcuts to Web Applications |
| 文件大小 | 498 KB |
| 安装次数 | 76 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2016-04-24 |
| 上架时间 | 2016-04-24 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | farleigh |
| 付费类型 | free |
| 扩展官网 | https://github.com/farleigh/keyboardshortcuts/wiki |
| 帮助页面URL | https://github.com/farleigh/keyboardshortcuts/wiki |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "KeyboardShortcuts",
"version": "1.0.0",
"description": "Add Keyboard Shortcuts to Web Applications",
"homepage_url": "https:\/\/github.com\/farleigh\/keyboardshortcuts\/wiki",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/3p\/almond-min.js",
"js\/3p\/jquery.js",
"js\/3p\/mousetrap.js",
"js\/keyboard-shortcuts-bundle.js"
]
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"tabs",
"activeTab",
"storage",
"clipboardWrite",
"downloads"
],
"browser_action": {
"default_icon": "images\/favicon.png",
"default_popup": "popup.html"
},
"icons": {
"32": "images\/favicon.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
},
"manifest_version": 2
} | |