Control video speed

In-place speed controller in any video.

Control video speed란 무엇입니까?

Control video speed은(는) Anika Kranjec에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "In-place speed controller in any video."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Control video speed 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Control video speed with this extension. You can increase or decrease speed on any embed video.

Functionality:
- 50%, 100%, 150%, 200%, 300% speed
- overlay with speed controls over the video
- keyboard shortcuts

How to use extension:
1) Open a video. For example, on Youtube
2) Move the mouse cursor over the video
3) You can find the control panel in the top-right corner of the video frame.
4) Use controls to increase or decrease video speed

Shortcuts:
   R - default playback speed
   S - slow down
   D - increase speed                    

확장 프로그램 기본 정보

이름 Control video speed Control video speed
ID bkbdedlenkomhjbfljaopfbmimhdgenl
공식 URL https://chrome.google.com/webstore/detail/control-video-speed/bkbdedlenkomhjbfljaopfbmimhdgenl
설명 In-place speed controller in any video.
파일 크기 110 KB
설치 횟수 100,000
현재 버전 1.3.2
최근 업데이트 2021-10-28
출시 날짜 2021-05-18
평점 4.83/5 총 12 개의 평점
개발자 Anika Kranjec
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1VQb2TmA0Tx4Pw0-tnGwe8CDOjOCfQQq6f-uBzgTBr6o/edit?usp=sharing
지원되는 언어 id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.3.2",
    "offline_enabled": true,
    "icons": {
        "128": "icon-128.png",
        "48": "icon-48.png",
        "16": "icon-16.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "inject_style.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "default_locale": "en",
    "permissions": [
        "storage",
        ""
    ]
}