Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Youtube Plus là gì?
Youtube Plus là một tiện ích mở rộng Chrome được phát triển bởi TalentedB, và tính năng chính của nó là "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Plus
Tải xuống các tệp mở rộng Youtube Plus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
Mô tả | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
Kích Thước Tệp | 70.09 KB |
Số Lần Cài Đặt | 60 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-02-25 |
Ngày Phát Hành | 2023-02-21 |
Đánh Giá | 5.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | TalentedB |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/TalentedB/Youtube-Plus |
URL Trang Trợ Giúp | https://github.com/TalentedB/Youtube-Plus |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |