Custom Hotkeys
Allows you to add custom hotkeys to a website.
Τι είναι το Custom Hotkeys;
Το Custom Hotkeys είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Scott Zackrison, και η κύρια λειτουργία του είναι "Allows you to add custom hotkeys to a website.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Custom Hotkeys
Λήψη αρχείων επέκτασης 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 |
Επίσημο URL | 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" ] } |