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是由admin开发的Chrome扩展程序,该扩展的主要功能是“Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.”。
扩展截图
下载Video Speed Control HTML5扩展crx文件
下载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:\/\/\/*"
]
}
]
} | |