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
官方網址 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
電子郵箱 [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": [
                ""
            ]
        }
    ]
}