Media Controller

Control video/audio in the webpage with keyboard shortcuts

What is Media Controller?

Media Controller is a Chrome extension developed by jsh9.github, and its main feature is "Control video/audio in the webpage with keyboard shortcuts".

Extension Screenshots

screenshot
screenshot
screenshot

Download Media Controller Extension CRX File

Download Media Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Media Controller Media Controller
ID eaecmocjfoffkdgcgmjfipbnfmakeane
Official URL https://chromewebstore.google.com/detail/media-controller/eaecmocjfoffkdgcgmjfipbnfmakeane
Description Control video/audio in the webpage with keyboard shortcuts
File Size 11.74 KB
Installation Count 108
Current Version 0.0.2
Last Updated 2023-06-22
Publish Date 2023-05-02
Developer jsh9.github
Email [email protected]
Payment Type free
Extension Website https://github.com/jsh9/chrome-media-controller
Supported Languages 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"
            ]
        }
    ]
}