Custom Hotkeys
Allows you to add custom hotkeys to a website.
Co to jest Custom Hotkeys?
Custom Hotkeys to rozszerzenie Chrome opracowane przez Scott Zackrison, a jego główną funkcją jest „Allows you to add custom hotkeys to a website.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Custom Hotkeys
Pobierz pliki rozszerzeń Custom Hotkeys w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | dogblfnfkmjolfcbpgfkhpaahocjhkbk |
| Oficjalny URL | https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk |
| Opis | Allows you to add custom hotkeys to a website. |
| Rozmiar pliku | 82.95 KB |
| Liczba instalacji | 1,477 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2017-07-19 |
| Data Publikacji | 2017-07-19 |
| Ocena | 4.29/5 Łącznie 7 Oceny |
| Deweloper | Scott Zackrison |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
} | |