Video Speed Controller Experimental

Experimental version of Video Speed Controller

什麼是Video Speed Controller Experimental?

Video Speed Controller Experimental是由Chad Bailey開發的Chrome擴展程式,該擴展的主要功能是“Experimental version of Video Speed Controller”。

擴展截圖

screenshot

下載Video Speed Controller Experimental擴展crx文件

下載Video Speed Controller Experimental擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This repository houses experimental features which may or may not make it in to the parent project Video Speed Controller.

The purpose of this is to have a place for testing features, ideas, or any change at all in order to get feedback on how the change is working before merging it into the larger parent project. This allows us a controlled way of experimenting without alienating the users who depend on the reliability of this tool.

At any given time this version may be in a broken state, and the reliability is not guaranteed. This is why it is called experimental. If you want the version which is stable and strives to work well for all users all the time, please get Video Speed Controller.

I think I may have made the point clear, but I do think it bears repeating. The goal of this effort is not to fork the parent project and create a "better" version of it, but rather to have a playground for testing out ideas with the expectation of either removing it all together or adding it into the parent project.                    

擴展基本資訊

名稱 Video Speed Controller Experimental Video Speed Controller Experimental
ID hechlhgpdpfdikhmacjfnpphbbpcjpek
官方網址 https://chromewebstore.google.com/detail/video-speed-controller-ex/hechlhgpdpfdikhmacjfnpphbbpcjpek
簡介 Experimental version of Video Speed Controller
檔案大小 54.31 KB
安裝次數 37,671
目前版本 0.6.0
更新時間 2020-03-04
上架時間 2020-03-04
評分 4.96/5 共 26 次評分
開發者 Chad Bailey
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ChadBailey/Video-Speed-Controller-Experimental
說明頁面URL https://github.com/ChadBailey/Video-Speed-Controller-Experimental/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Speed Controller Experimental",
    "short_name": "videospeed-experimental",
    "version": "0.6.0",
    "manifest_version": 2,
    "description": "Experimental version of Video Speed Controller",
    "homepage_url": "https:\/\/github.com\/ChadBailey\/Video-Speed-Controller-Experimental",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png",
            "48": "icons\/icon48.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "match_about_blank": true,
            "exclude_matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/hangouts.google.com\/*",
                "https:\/\/meet.google.com\/*",
                "https:\/\/teamtreehouse.com\/*",
                "http:\/\/www.hitbox.tv\/*"
            ],
            "css": [
                "inject.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject.css",
        "shadow.css"
    ]
}