Custom Hotkeys
Allows you to add custom hotkeys to a website.
Qu'est-ce que Custom Hotkeys ?
Custom Hotkeys est une extension Chrome développée par Scott Zackrison, et sa fonction principale est "Allows you to add custom hotkeys to a website.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Custom Hotkeys
Téléchargez les fichiers d'extension Custom Hotkeys au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Custom Hotkeys |
ID | dogblfnfkmjolfcbpgfkhpaahocjhkbk |
URL Officiel | https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk |
Description | Allows you to add custom hotkeys to a website. |
Taille du Fichier | 82.95 KB |
Nombre d'Installations | 1,477 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-07-19 |
Date de Publication | 2017-07-19 |
Évaluation | 4.29/5 Total 7 Évaluations |
Développeur | Scott Zackrison |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |