Media Controller

Control video/audio in the webpage with keyboard shortcuts

什么是Media Controller?

Media Controller是由jsh9.github开发的Chrome扩展程序,该扩展的主要功能是“Control video/audio in the webpage with keyboard shortcuts”。

扩展截图

screenshot
screenshot
screenshot

下载Media Controller扩展crx文件

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

扩展使用说明

                        A Chrome extension that lets you control video/audio in the webpage with keyboard shortcuts. Supported controls are: pause/play, volume up/down, seek backwards/forwards, speed up, slow down, and mute/unmute.                    

扩展基本信息

名称 Media Controller Media Controller
ID eaecmocjfoffkdgcgmjfipbnfmakeane
官方URL https://chromewebstore.google.com/detail/media-controller/eaecmocjfoffkdgcgmjfipbnfmakeane
简介 Control video/audio in the webpage with keyboard shortcuts
文件大小 11.74 KB
安装次数 108
当前版本 0.0.2
更新时间 2023-06-22
上架时间 2023-05-02
开发者 jsh9.github
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jsh9/chrome-media-controller
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Media Controller",
    "description": "Control video\/audio in the webpage with keyboard shortcuts",
    "version": "0.0.2",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}