Video Speed Lord
This extension allow you to control the speed of the video playing. Feel like a time lord!
ما هو Video Speed Lord؟
Video Speed Lord هو إضافة Chrome تم تطويرها بواسطة roman.oxenuk، والميزة الرئيسية لها هي "This extension allow you to control the speed of the video playing. Feel like a time lord!".
تحميل ملف CRX للإضافة Video Speed Lord
قم بتنزيل ملفات الامتداد Video Speed Lord بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Hackathon project for speeding up and slowing down HTML5 videos, especialy at vk.com =) Thanks to GoHack Hackathon (vk.com/gohack) for pizza and fun!
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | kmeeediidboennbhdjfceodhdboaphlc |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc |
الوصف | This extension allow you to control the speed of the video playing. Feel like a time lord! |
حجم الملف | 5.75 KB |
عدد التثبيتات | 22 |
النسخة الحالية | 1.0 |
آخر تحديث | 2017-04-15 |
تاريخ النشر | 2017-04-15 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | roman.oxenuk |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Speed Lord", "description": "This extension allow you to control the speed of the video playing. Feel like a time lord!", "version": "1.0", "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "myscript.js" ], "css": [ "style.css" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Click here!" }, "permissions": [ "activeTab", "debugger", "tabs", "https:\/\/ajax.googleapis.com\/" ] } |