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

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

확장 프로그램 사용 설명서

                        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
이메일 [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": [
                ""
            ]
        }
    ]
}