Video Speed Control HTML5
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Что такое Video Speed Control HTML5?
Video Speed Control HTML5 - это расширение Chrome, разработанное admin, и его основная функция - "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.".
Снимки экрана расширения
Скачать файл CRX расширения Video Speed Control HTML5
Скачайте файлы расширений Video Speed Control HTML5 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Основная информация о расширении
Название | |
ID | pgeeiieaichainfdhpdanloeimnpofhl |
Официальный URL | https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl |
Описание | Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons. |
Размер файла | 60.54 KB |
Количество установок | 884 |
Текущая Версия | 1.1.2 |
Последнее Обновление | 2022-10-23 |
Дата публикации | 2022-10-23 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | admin |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Speed Control HTML5", "version": "1.1.2", "manifest_version": 3, "minimum_chrome_version": "89", "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.", "icons": { "128": "images\/icon128.png" }, "background": { "service_worker": "bg.js" }, "permissions": [ "storage", "webRequest", "tabs" ], "options_ui": { "page": "html5\/options.html", "open_in_tab": true }, "action": { "default_icon": { "64": "images\/icon64.png" }, "default_popup": "html5\/popup.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "match_about_blank": true, "exclude_matches": [ "https:\/\/plus.google.com\/hangouts\/*", "https:\/\/hangouts.google.com\/*", "https:\/\/meet.google.com\/*" ], "css": [ "inject\/inject.css" ], "js": [ "inject\/inject.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "ct.js" ], "run_at": "document_end", "all_frames": false } ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ] } |