Change Video Playback Speeds

Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.

Change Video Playback Speeds란 무엇입니까?

Change Video Playback Speeds은(는) Torey Littlefield에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Change Video Playback Speeds 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adjust playback speed on most videos including most videos embedded in an iframe. Works with YouTube, Netflix, and other supported video players. Includes additional controls for customizing the styles of Netflix subtitles for more pleasant viewing or greater contrast for readability!

Change Video Playback Speeds is a quick way to speed up or slow down videos by easily moving the slider in the extension popup. Your preferred video playback video is automatically saved but can be reset back to the default speed.

Some features:
- Change speed from 0.0x up to 10x
- Adjust the style of Netflix subtitles by font color, font weight, font size, and screen position.

Getting started: If a video is found on a webpage the extension icon with have a purple background. Just click the icon and adjust the slider to change the video playback speed.                    

확장 프로그램 기본 정보

이름 Change Video Playback Speeds Change Video Playback Speeds
ID ncnbdjhoplchclmeanmckpmobhmodlio
공식 URL https://chromewebstore.google.com/detail/change-video-playback-spe/ncnbdjhoplchclmeanmckpmobhmodlio
설명 Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.
파일 크기 53.14 KB
설치 횟수 18
현재 버전 0.1
최근 업데이트 2021-08-30
출시 날짜 2021-08-30
개발자 Torey Littlefield
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/toreylittlefield/Video-Player-Chrome-Extension
도움말 페이지 URL https://github.com/toreylittlefield/Video-Player-Chrome-Extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Change Video Playback Speeds",
    "action": {
        "default_popup": ".\/src\/Popup\/disabled.html",
        "default_title": "Control Video Playback Speed",
        "default_icon": {
            "16": "images\/online-video_16.png",
            "48": "images\/online-video_48.png",
            "128": "images\/online-video_128.png"
        }
    },
    "manifest_version": 3,
    "version": "0.1",
    "description": "Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.",
    "permissions": [
        "activeTab",
        "tabs",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "images\/online-video_16.png",
        "48": "images\/online-video_48.png",
        "128": "images\/online-video_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                ".\/dist\/content_scripts.js"
            ]
        }
    ]
}