5 Speed Options for HTML5 videos
Allows users to store 5 different speed options and access them with keyboard shortcuts
ما هو 5 Speed Options for HTML5 videos؟
5 Speed Options for HTML5 videos هو إضافة Chrome تم تطويرها بواسطة h-1، والميزة الرئيسية لها هي "Allows users to store 5 different speed options and access them with keyboard shortcuts".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة 5 Speed Options for HTML5 videos
قم بتنزيل ملفات الامتداد 5 Speed Options for HTML5 videos بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Allows users to store 5 different speed options and access them with keyboard shortcuts. 5SpeedOptions is heavily influenced by Video Speed Controller Developer: https://github.com/igrigorik Video Speed Controller code: https://github.com/igrigorik/videospeed Chrome extension: https://chrome.google.com/webstore/detail/video-speed-controller/nffaoalbilbmmfgbnbgppjihopabppdk Icon made by Freepik from www.flaticon.com http://www.flaticon.com/free-icon/number-5_1875
معلومات أساسية عن التمديد
الاسم | |
ID | jgcledljkklfpfbidpfogmcihiphjibn |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/5-speed-options-for-html5/jgcledljkklfpfbidpfogmcihiphjibn |
الوصف | Allows users to store 5 different speed options and access them with keyboard shortcuts |
حجم الملف | 12.54 KB |
عدد التثبيتات | 341 |
النسخة الحالية | 1.3 |
آخر تحديث | 2018-10-03 |
تاريخ النشر | 2018-10-03 |
تقييم | 4.56/5 مجموع تقييمات 9 |
المطور | h-1 |
نوع الدفع | free |
موقع الإضافة | https://github.com/h-1/5SpeedOptions |
عنوان صفحة المساعدة | https://github.com/h-1/5SpeedOptions |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "5 Speed Options for HTML5 videos", "description": "Allows users to store 5 different speed options and access them with keyboard shortcuts", "version": "1.3", "homepage_url": "https:\/\/github.com\/h-1\/5SpeedOptions", "permissions": [ "storage" ], "options_page": "options.html", "icons": { "16": "icons\/Number_5_16.png", "48": "icons\/Number_5_64.png", "128": "icons\/Number_5_128.png" }, "browser_action": { "default_icon": { "16": "icons\/Number_5_16.png", "48": "icons\/Number_5_64.png" }, "default_popup": "options.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "inject.js" ], "css": [ "inject.css" ] } ] } |