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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}