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)是由sameernyaupane開發的Chrome擴展程式,該擴展的主要功能是“Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode.”。
擴展截圖
下載Simple Auto HD (Open Source)擴展crx文件
下載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 |
| 官方網址 | 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\/*"
]
} | |