Simple Auto HD (Open Source)
Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode.
Simple Auto HD (Open Source)คืออะไร?
Simple Auto HD (Open Source) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sameernyaupane และคุณลักษณะหลักของมันคือ "Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Auto HD (Open Source)
ดาวน์โหลดไฟล์ส่วนขยาย Simple Auto HD (Open Source) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
✔ Lightweight and efficient
✔ Fully open source: https://github.com/sameernyaupane/simple-auto-hd
✔ No tracking, or any user data collection.
✔ Supports up to 8k quality and (60fps/50fps/48fps/30fps) modes
✔ Option to Select best available quality automatically ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | jnofiabkigekemighcdaejlpgdhmbaog |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/simple-auto-hd-open-sourc/jnofiabkigekemighcdaejlpgdhmbaog |
| คำอธิบาย | Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode. |
| ขนาดไฟล์ | 51.88 KB |
| จำนวนการติดตั้ง | 1,832 |
| เวอร์ชันปัจจุบัน | 2.0.5 |
| อัปเดตครั้งล่าสุด | 2023-06-13 |
| วันที่เผยแพร่ | 2019-12-19 |
| คะแนน | 4.49/5 รวมทั้งหมด 41 คะแนน |
| ผู้พัฒนา | sameernyaupane |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/sameernyaupane/simple-auto-hd |
| URL หน้าช่วยเหลือ | https://github.com/sameernyaupane/simple-auto-hd |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Simple Auto HD (Open Source)",
"description": "Simple Auto HD quality selector for YouTube. Up to 8k\/4k (60fps\/50fps\/48fps\/30fps) supported. Theater mode.",
"version": "2.0.5",
"author": "Sameer Nyaupane",
"icons": {
"16": "sahd-16.png",
"48": "sahd-48.png",
"128": "sahd-128.png"
},
"action": {
"default_title": "Simple Auto HD",
"default_icon": "sahd-16.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"exclude_globs": [
"*\/embed\/*",
"*\/tv#\/*",
"*\/tv\/*"
],
"all_frames": true,
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*"
]
} | |