Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Youtube Plus란 무엇입니까?
Youtube Plus은(는) TalentedB에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…"입니다.
확장 프로그램 스크린샷
Youtube Plus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and comprehend content at your own pace with ease. Our extension also comes equipped with an ad-skipping feature for YouTube videos, ensuring an uninterrupted viewing experience. Additionally, our extension includes a volume changer feature that allows you to adjust the volume of any video playing, even above or below 100%. No more frustration with slow videos, annoying ads, or limited volume control. Download our extension today and elevate your video playback experience to the next level.
확장 프로그램 기본 정보
이름 | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
공식 URL | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
설명 | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
파일 크기 | 70.09 KB |
설치 횟수 | 60 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-02-25 |
출시 날짜 | 2023-02-21 |
평점 | 5.00/5 총 9 개의 평점 |
개발자 | TalentedB |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/TalentedB/Youtube-Plus |
도움말 페이지 URL | https://github.com/TalentedB/Youtube-Plus |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Plus", "version": "1.0", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_title": "Youtube Plus", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "adskipper.js" ], "run_at": "document_start", "world": "MAIN" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "volumeInject.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "scripting", "activeTab" ] } |