Video Speed Controller

Control video speed of video's on any page with the simple chrome extension

什么是Video Speed Controller?

Video Speed Controller是由videospeedcontrollerpro开发的Chrome扩展程序,该扩展的主要功能是“Control video speed of video's on any page with the simple chrome extension”。

扩展截图

screenshot
screenshot

下载Video Speed Controller扩展crx文件

下载Video Speed Controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Control video speed of video's on any page with the simple chrome extension                    

扩展基本信息

名称 Video Speed Controller Video Speed Controller
ID gmbmliclljegcljoncmaoccifcfmkaem
官方URL https://chromewebstore.google.com/detail/video-speed-controller/gmbmliclljegcljoncmaoccifcfmkaem
简介 Control video speed of video's on any page with the simple chrome extension
文件大小 66.69 KB
安装次数 3,218
当前版本 1.1
更新时间 2023-06-29
上架时间 2023-06-20
评分 5.00/5 共1次评分
开发者 videospeedcontrollerpro
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Controller",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icon128.png",
            "64": "icon128.png",
            "128": "icon128.png"
        }
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "32": "icon128.png",
        "64": "icon128.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "commands": {
        "increase-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up"
            },
            "description": "Increase video speed"
        },
        "decrease-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Decrease video speed"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}