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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |