YouTube Quality Adjuster

Automatically adjusts the quality of YouTube Videos

YouTube Quality Adjusterคืออะไร?

YouTube Quality Adjuster เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hiatamaworkshop และคุณลักษณะหลักของมันคือ "Automatically adjusts the quality of YouTube Videos"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Quality Adjuster

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Quality Adjuster ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Quality Adjuster YouTube Quality Adjuster
ID ohjehldapgfhlmekcencdhikpdjmjpkk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk
คำอธิบาย Automatically adjusts the quality of YouTube Videos
ขนาดไฟล์ 27.98 KB
จำนวนการติดตั้ง 1,445
เวอร์ชันปัจจุบัน 2.1
อัปเดตครั้งล่าสุด 2023-10-04
วันที่เผยแพร่ 2021-02-09
คะแนน 3.92/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา hiatamaworkshop
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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\/*"
    ]
}