Video speed adjuster

Fast-forward, rewind, adjust playback speed on any video

Video speed adjuster란 무엇입니까?

Video speed adjuster은(는) Binita Chalise에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fast-forward, rewind, adjust playback speed on any video"입니다.

확장 프로그램 스크린샷

screenshot

Video speed adjuster 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Video speed adjuster adds controls to web videos that allow to increase or decrease playback speed.

Some features:
- Change speed from 0.25x up to 10x
- You can use keyboard shortcuts as well as control panel over the video 

Getting started: Open a video and find speed controls, or use the “s” and “d” buttons on your keyboard.                    

확장 프로그램 기본 정보

이름 Video speed adjuster Video speed adjuster
ID fhdjoapblekhhphgjjoehakeiefdbiep
공식 URL https://chrome.google.com/webstore/detail/video-speed-adjuster/fhdjoapblekhhphgjjoehakeiefdbiep
설명 Fast-forward, rewind, adjust playback speed on any video
파일 크기 429 KB
설치 횟수 600,000
현재 버전 3.2.2
최근 업데이트 2021-07-09
출시 날짜 2021-05-12
평점 4.19/5 총 31 개의 평점
개발자 Binita Chalise
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1NM2uTWYzkAg4v6oAzj20jdIbR3CLDlYXuuEBbMqVozI/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,fi,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": "3.2.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": [
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "l-arrow.png",
        "r-arrow.png"
    ],
    "default_locale": "en",
    "content_security_policy": "script-src 'self' https:\/\/*.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage",
        ""
    ]
}