YTQ - YouTube Quality Selector
A chrome plugin to automatically set the quality of YouTube videos
YTQ - YouTube Quality Selectorคืออะไร?
YTQ - YouTube Quality Selector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.codemic.co.za และคุณลักษณะหลักของมันคือ "A chrome plugin to automatically set the quality of YouTube videos"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YTQ - YouTube Quality Selector
ดาวน์โหลดไฟล์ส่วนขยาย YTQ - YouTube Quality Selector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YTQ - YouTube Quality Selector |
ID | koekelbfakgefdogcfjjaimakbecekbj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj |
คำอธิบาย | A chrome plugin to automatically set the quality of YouTube videos |
ขนาดไฟล์ | 207 KB |
จำนวนการติดตั้ง | 228 |
เวอร์ชันปัจจุบัน | 2 |
อัปเดตครั้งล่าสุด | 2023-07-06 |
วันที่เผยแพร่ | 2021-09-02 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://www.codemic.co.za |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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 } |