Youtube Auto Quality
Quality settings on Youtube videos will be defaulted to the highest quality possible.
Youtube Auto Qualityคืออะไร?
Youtube Auto Quality เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jamesw8dev และคุณลักษณะหลักของมันคือ "Quality settings on Youtube videos will be defaulted to the highest quality possible."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Auto Quality
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Auto Quality ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube Auto Quality |
ID | dggjpamoacejckpnhgnlmajommekebho |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-auto-quality/dggjpamoacejckpnhgnlmajommekebho |
คำอธิบาย | Quality settings on Youtube videos will be defaulted to the highest quality possible. |
ขนาดไฟล์ | 26.3 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2021-10-15 |
วันที่เผยแพร่ | 2021-10-06 |
ผู้พัฒนา | jamesw8dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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 } ] } |