Custom Youtube Playback Speed
Easy way to change youtube video playback speed
Custom Youtube Playback Speed란 무엇입니까?
Custom Youtube Playback Speed은(는) PH03NIX Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy way to change youtube video playback speed"입니다.
확장 프로그램 스크린샷
Custom Youtube Playback Speed 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simple extension, which let you change playback speed of youtube videos. You can setup value form range 0.10x to 10x with 0.10x step. 3 ways of control integrated into youtube interface: by slider, numeric input or by keys defined in settings.
확장 프로그램 기본 정보
이름 | Custom Youtube Playback Speed |
ID | mlnghacnjjppjfbbjbpkgcemiaglbpii |
공식 URL | https://chromewebstore.google.com/detail/custom-youtube-playback-s/mlnghacnjjppjfbbjbpkgcemiaglbpii |
설명 | Easy way to change youtube video playback speed |
파일 크기 | 174 KB |
설치 횟수 | 116 |
현재 버전 | 1.4.3 |
최근 업데이트 | 2023-12-03 |
출시 날짜 | 2022-02-01 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | PH03NIX Software |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Custom Youtube Playback Speed", "description": "Easy way to change youtube video playback speed", "version": "1.4.3", "short_name": "YTSpeed", "author": "Krzaku", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "index.html", "default_title": "Custom yt playback speed settings" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "index.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "icons": { "16": "\/icons\/extension_icon16.png", "32": "\/icons\/extension_icon32.png", "48": "\/icons\/extension_icon48.png", "128": "\/icons\/extension_icon128.png" } } |