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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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\/" ] } |