Video Speed Controller - BETA Channel

BETA testing release of Video Speed Controller. Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts

Video Speed Controller - BETA Channelとは何ですか?

Video Speed Controller - BETA ChannelはChad Baileyによって開発されたChromeの拡張機能で、その主な機能は「BETA testing release of Video Speed Controller. Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts」です。

拡張機能のスクリーンショット

screenshot

Video Speed Controller - BETA Channel拡張機能のCRXファイルをダウンロード

Video Speed Controller - BETA Channel拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Video Speed Controller - BETA Do not use unless you know what you're doing. If you're unsure, please install the parent project Video Speed Controller instead https://chrome.google.com/webstore/detail/video-speed-controller/nffaoalbilbmmfgbnbgppjihopabppdk                    

拡張機能の基本情報

名前 Video Speed Controller - BETA Channel Video Speed Controller - BETA Channel
ID kgciknbfdanakgjeeoihchpljcejkkdj
公式URL https://chromewebstore.google.com/detail/video-speed-controller-be/kgciknbfdanakgjeeoihchpljcejkkdj
説明 BETA testing release of Video Speed Controller. Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts
ファイルサイズ 99.57 KB
インストール数 147
現在のバージョン 0.8.2
最終更新日 2022-09-10
公開日 2022-09-06
開発者 Chad Bailey
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ChadBailey/videospeed-refactoring
ヘルプページのURL https://github.com/ChadBailey/videospeed-refactoring/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.8.2",
    "manifest_version": 3,
    "name": "Video Speed Controller - BETA Channel",
    "short_name": "videospeed-controller-beta",
    "description": "BETA testing release of Video Speed Controller. Speed up, slow down, advance and rewind HTML5 audio\/video with shortcuts",
    "homepage_url": "https:\/\/github.com\/ChadBailey\/videospeed-refactoring",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "assets\/html\/options.html",
        "open_in_tab": true
    },
    "host_permissions": [
        ""
    ],
    "action": {
        "default_title": "Video Speed Controller - BETA Channel",
        "default_popup": "assets\/html\/popup.html",
        "default_icon": {
            "19": "assets\/images\/icon19.png",
            "38": "assets\/images\/icon38.png",
            "48": "assets\/images\/icon48.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "exclude_matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/hangouts.google.com\/*",
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "assets\/css\/content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/images\/icon16.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/css\/content.css",
                "background.js.map",
                "content.js.map",
                "options.js.map",
                "popup.js.map"
            ],
            "matches": [
                ""
            ]
        }
    ]
}