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.”。

扩展截图

screenshot

下载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                    

扩展基本信息

名称 Simple Auto HD (Open Source) Simple Auto HD (Open Source)
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\/*"
    ]
}