YouTube Quality Adjuster
Automatically adjusts the quality of YouTube Videos
YouTube Quality Adjuster là gì?
YouTube Quality Adjuster là một tiện ích mở rộng Chrome được phát triển bởi hiatamaworkshop, và tính năng chính của nó là "Automatically adjusts the quality of YouTube Videos".
Ả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 Quality Adjuster
Tải xuống các tệp mở rộng YouTube Quality Adjuster 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
Adjust the quality of YouTube Videos automatically. Only available in the original YouTube page, not the embedded videos. no adds or any kind of network communication. Updated Sep/2023
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Quality Adjuster |
ID | ohjehldapgfhlmekcencdhikpdjmjpkk |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk |
Mô tả | Automatically adjusts the quality of YouTube Videos |
Kích Thước Tệp | 27.98 KB |
Số Lần Cài Đặt | 1,445 |
Phiên Bản Hiện Tại | 2.1 |
Cập Nhật Lần Cuối | 2023-10-04 |
Ngày Phát Hành | 2021-02-09 |
Đánh Giá | 3.92/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | hiatamaworkshop |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Quality Adjuster", "version": "2.1", "manifest_version": 3, "description": "Automatically adjusts the quality of YouTube Videos", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_popup": "youtube_quality.html", "default_icon": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "qualityControl.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "permissions": [ "storage", "declarativeContent" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/*.youtube.com\/*" ] } |