Custom Hotkeys
Allows you to add custom hotkeys to a website.
Wat is Custom Hotkeys?
Custom Hotkeys is een Chrome-extensie ontwikkeld door Scott Zackrison, en de belangrijkste functie is "Allows you to add custom hotkeys to a website.".
Extensie Screenshots
Download het CRX-bestand van de extensie Custom Hotkeys
Download Custom Hotkeys-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | dogblfnfkmjolfcbpgfkhpaahocjhkbk |
| Officiële URL | https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk |
| Beschrijving | Allows you to add custom hotkeys to a website. |
| Bestandsgrootte | 82.95 KB |
| Aantal Installaties | 1,477 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2017-07-19 |
| Publicatiedatum | 2017-07-19 |
| Beoordeling | 4.29/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | Scott Zackrison |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |