Custom Hotkeys
Allows you to add custom hotkeys to a website.
什么是Custom Hotkeys?
Custom Hotkeys是由Scott Zackrison开发的Chrome扩展程序,该扩展的主要功能是“Allows you to add custom hotkeys to a website.”。
扩展截图
下载Custom Hotkeys扩展crx文件
下载Custom Hotkeys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to set up hotkeys on any website. Use your keyboard to simulate a click on an element on the screen. It uses jQuery selectors. I use it on pocketcasts.com to control the on screen controls. I made them the same as Youtubes keyboard controls. Updated: 7/19/17 --> fixed a bug when typing in an input or textarea firing the event.
扩展基本信息
名称 | Custom Hotkeys |
ID | dogblfnfkmjolfcbpgfkhpaahocjhkbk |
官方URL | https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk |
简介 | Allows you to add custom hotkeys to a website. |
文件大小 | 82.95 KB |
安装次数 | 1,477 |
当前版本 | 1.1 |
更新时间 | 2017-07-19 |
上架时间 | 2017-07-19 |
评分 | 4.29/5 共7次评分 |
开发者 | Scott Zackrison |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Hotkeys", "description": "Allows you to add custom hotkeys to a website.", "version": "1.1", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.4.min.js", "content.js" ], "all_frames": true } ], "options_page": "options.html", "icons": { "48": "icon_48.png", "24": "icon_24.png" }, "permissions": [ "storage" ] } |