Youtube Auto Quality

Quality settings on Youtube videos will be defaulted to the highest quality possible.

Youtube Auto Quality là gì?

Youtube Auto Quality là một tiện ích mở rộng Chrome được phát triển bởi jamesw8dev, và tính năng chính của nó là "Quality settings on Youtube videos will be defaulted to the highest quality possible.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Auto Quality

Tải xuống các tệp mở rộng Youtube Auto Quality 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

                        YouTube's auto quality feature doesn't always use the highest quality supported. This extension automatically sets the quality to the best option per video.

Release Log
---
v0.2 - Fix bug when entering from youtube.com
v0.1 - Initial release

Disclaimer
--
YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube Auto Quality Youtube Auto Quality
ID dggjpamoacejckpnhgnlmajommekebho
URL Chính Thức https://chromewebstore.google.com/detail/youtube-auto-quality/dggjpamoacejckpnhgnlmajommekebho
Mô tả Quality settings on Youtube videos will be defaulted to the highest quality possible.
Kích Thước Tệp 26.3 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2021-10-15
Ngày Phát Hành 2021-10-06
Nhà Phát Triển jamesw8dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Auto Quality",
    "description": "Quality settings on Youtube videos will be defaulted to the highest quality possible.",
    "version": "0.2",
    "manifest_version": 3,
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/js\/setQuality.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}