Video Speed Up

Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.

Video Speed Up란 무엇입니까?

Video Speed Up은(는) no9에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        The extension's function is to accelerate video playback and slow it down below normal speed. It works with video and audio elements on websites that support it. To activate the extension, simply left-click on its icon. Right-clicking on the extension's icon reveals a menu with additional options that may be useful in certain situations.

Known issue:

- On some webpages, it is not possible to adjust the speed of the played elements. This is due to how the specific page is designed.

If you find this extension useful, you may consider supporting the author with a donation of any amount.                    

확장 프로그램 기본 정보

이름 Video Speed Up Video Speed Up
ID glehbmcdknkgdibnilmbinohdnmjggoo
공식 URL https://chromewebstore.google.com/detail/video-speed-up/glehbmcdknkgdibnilmbinohdnmjggoo
설명 Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.
파일 크기 45.53 KB
설치 횟수 1,253
현재 버전 1.5.7.5
최근 업데이트 2023-07-26
출시 날짜 2019-10-30
평점 2.80/5 총 5 개의 평점
개발자 no9
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Up",
    "description": "Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.",
    "version": "1.5.7.5",
    "author": "[email protected]",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "VSUScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/\/*\/"
    ],
    "action": {
        "default_icon": "icon19.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    }
}