Custom Hotkeys
Allows you to add custom hotkeys to a website.
Vad är Custom Hotkeys?
Custom Hotkeys är en Chrome-tillägg utvecklad av Scott Zackrison, och dess huvudfunktion är "Allows you to add custom hotkeys to a website.".
Tilläggsskärmbilder
Ladda ner Custom Hotkeys-förlängningens CRX-fil
Ladda ner Custom Hotkeys-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Custom Hotkeys |
ID | dogblfnfkmjolfcbpgfkhpaahocjhkbk |
Officiell webbadress | https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk |
Beskrivning | Allows you to add custom hotkeys to a website. |
Filstorlek | 82.95 KB |
Antal Installationer | 1,477 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2017-07-19 |
Publiceringsdatum | 2017-07-19 |
Betyg | 4.29/5 Totalt 7 Betyg |
Utvecklare | Scott Zackrison |
Betalningssätt | free |
Stödda Språk | 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" ] } |