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
Eメール [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\/*"
    ]
}