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