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
Eメール [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"
            ]
        }
    ]
}