Youtube Auto Quality

Quality settings on Youtube videos will be defaulted to the highest quality possible.

什麼是Youtube Auto Quality?

Youtube Auto Quality是由jamesw8dev開發的Chrome擴展程式,該擴展的主要功能是“Quality settings on Youtube videos will be defaulted to the highest quality possible.”。

擴展截圖

screenshot

下載Youtube Auto Quality擴展crx文件

下載Youtube Auto Quality擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        YouTube's auto quality feature doesn't always use the highest quality supported. This extension automatically sets the quality to the best option per video.

Release Log
---
v0.2 - Fix bug when entering from youtube.com
v0.1 - Initial release

Disclaimer
--
YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

擴展基本資訊

名稱 Youtube Auto Quality Youtube Auto Quality
ID dggjpamoacejckpnhgnlmajommekebho
官方網址 https://chromewebstore.google.com/detail/youtube-auto-quality/dggjpamoacejckpnhgnlmajommekebho
簡介 Quality settings on Youtube videos will be defaulted to the highest quality possible.
檔案大小 26.3 KB
安裝次數 21
目前版本 0.2
更新時間 2021-10-15
上架時間 2021-10-06
開發者 jamesw8dev
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Auto Quality",
    "description": "Quality settings on Youtube videos will be defaulted to the highest quality possible.",
    "version": "0.2",
    "manifest_version": 3,
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/js\/setQuality.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}