YTQ - YouTube Quality Selector

A chrome plugin to automatically set the quality of YouTube videos

YTQ - YouTube Quality Selector là gì?

YTQ - YouTube Quality Selector là một tiện ích mở rộng Chrome được phát triển bởi https://www.codemic.co.za, và tính năng chính của nó là "A chrome plugin to automatically set the quality of YouTube videos".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YTQ - YouTube Quality Selector

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

                        Tired of YouTube automatically dropping the quality to suit bandwith and connection demands?
Since YouTube does not allow you to set a default quality for videos, this plugin aims to eliminate the need of manually selecting a higher quality for each video. Simply set your default quality and let the plugin take care of the rest.                    

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

Tên YTQ - YouTube Quality Selector YTQ - YouTube Quality Selector
ID koekelbfakgefdogcfjjaimakbecekbj
URL Chính Thức https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj
Mô tả A chrome plugin to automatically set the quality of YouTube videos
Kích Thước Tệp 207 KB
Số Lần Cài Đặt 228
Phiên Bản Hiện Tại 2
Cập Nhật Lần Cuối 2023-07-06
Ngày Phát Hành 2021-09-02
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.codemic.co.za
Email [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": "YTQ - YouTube Quality Selector",
    "description": "A chrome plugin to automatically set the quality of YouTube videos",
    "version": "2",
    "browser_action": {
        "default_title": "YTQ - YouTube Quality Selector",
        "default_icon": "icons\/logo.png",
        "default_popup": "YTQ.html"
    },
    "icons": {
        "16": "icons\/logo16.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/youtube.com\/*",
        "https:\/\/youtube.com\/*",
        "http:\/\/*.youtube.com\/*",
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "popup.js",
                "YTQ.js"
            ]
        }
    ],
    "manifest_version": 2
}