Youtube Custom Speed

Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!

Youtube Custom Speed란 무엇입니까?

Youtube Custom Speed은(는) nizioleque에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Youtube Custom Speed 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Youtube Custom Speed lets you play any Youtube video at any speed you like, from 0.0125x to 16x!

Use the options menu to set your preferred playback rate values. Then, change the speed using buttons at the bottom of the video. It also cooperates with the default Youtube keyboard shortcuts - Shift + , and Shift + .

If you experience any issues, please feel free to email me with a bug report.                    

확장 프로그램 기본 정보

이름 Youtube Custom Speed Youtube Custom Speed
ID kmfcinojnfabkpndlgomnfjllgeppegb
공식 URL https://chromewebstore.google.com/detail/youtube-custom-speed/kmfcinojnfabkpndlgomnfjllgeppegb
설명 Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!
파일 크기 26.33 KB
설치 횟수 6,263
현재 버전 1.6.1
최근 업데이트 2022-02-19
출시 날짜 2021-12-02
평점 4.71/5 총 48 개의 평점
개발자 nizioleque
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.6.1",
    "default_locale": "en",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/changespeed.js",
                "content\/kbshort.js",
                "content\/menu.js",
                "content\/observer.js",
                "content\/configure.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "ui.html"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}