Custom Hotkeys
Allows you to add custom hotkeys to a website.
Cos'è Custom Hotkeys?
Custom Hotkeys è un'estensione di Chrome sviluppata da Scott Zackrison, e la sua funzione principale è "Allows you to add custom hotkeys to a website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Custom Hotkeys
Scarica i file di estensione Custom Hotkeys in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | dogblfnfkmjolfcbpgfkhpaahocjhkbk |
| URL Ufficiale | https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk |
| Descrizione | Allows you to add custom hotkeys to a website. |
| Dimensione del File | 82.95 KB |
| Conteggio Installazioni | 1,477 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2017-07-19 |
| Data di Pubblicazione | 2017-07-19 |
| Valutazione | 4.29/5 Totale 7 Valutazioni |
| Sviluppatore | Scott Zackrison |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |