Video Speed Control HTML5

Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.

Video Speed Control HTML5란 무엇입니까?

Video Speed Control HTML5은(는) admin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons."입니다.

확장 프로그램 스크린샷

screenshot

Video Speed Control HTML5 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.                    

확장 프로그램 기본 정보

이름 Video Speed Control HTML5 Video Speed Control HTML5
ID pgeeiieaichainfdhpdanloeimnpofhl
공식 URL https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl
설명 Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
파일 크기 60.54 KB
설치 횟수 884
현재 버전 1.1.2
최근 업데이트 2022-10-23
출시 날짜 2022-10-23
평점 5.00/5 총 2 개의 평점
개발자 admin
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Speed Control HTML5",
    "version": "1.1.2",
    "manifest_version": 3,
    "minimum_chrome_version": "89",
    "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.",
    "icons": {
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "permissions": [
        "storage",
        "webRequest",
        "tabs"
    ],
    "options_ui": {
        "page": "html5\/options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": {
            "64": "images\/icon64.png"
        },
        "default_popup": "html5\/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\/*"
            ],
            "css": [
                "inject\/inject.css"
            ],
            "js": [
                "inject\/inject.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ct.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ]
}