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" ] } |