Remote Control Key Simulator
Generate key events for keys you don't got
ما هو Remote Control Key Simulator؟
Remote Control Key Simulator هو إضافة Chrome تم تطويرها بواسطة https://www.frisnit.com، والميزة الرئيسية لها هي "Generate key events for keys you don't got".
تحميل ملف CRX للإضافة Remote Control Key Simulator
قم بتنزيل ملفات الامتداد Remote Control Key Simulator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Gives you the buttons your keyboard doesn't support, for testing web apps for set top boxes, smart TVs etc. Currently supports: - Playstation - Amazon Fire - YouView
معلومات أساسية عن التمديد
الاسم | Remote Control Key Simulator |
ID | pojpkoooooliacdjjhlcolpaaeljomof |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/remote-control-key-simula/pojpkoooooliacdjjhlcolpaaeljomof |
الوصف | Generate key events for keys you don't got |
حجم الملف | 72.84 KB |
عدد التثبيتات | 74 |
النسخة الحالية | 0.2 |
آخر تحديث | 2017-05-26 |
تاريخ النشر | 2017-05-26 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | https://www.frisnit.com |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remote Control Key Simulator", "description": "Generate key events for keys you don't got", "version": "0.2", "page_action": { "default_icon": { "16": "icon16.png", "19": "icon19.png", "38": "icon38.png", "48": "icon48.png", "128": "icon128.png" }, "default_title": "Remote Control Key Simulator", "default_popup": "popup.html" }, "permissions": [ "storage", "declarativeContent", "tabs", "https:\/\/*.channel4.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.channel4.com\/*" ], "js": [ "timer.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "19": "icon19.png", "38": "icon38.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png", "512": "icon512.png" } } |