Youtube Auto Quality

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

What is Youtube Auto Quality?

Youtube Auto Quality is a Chrome extension developed by jamesw8dev, and its main feature is "Quality settings on Youtube videos will be defaulted to the highest quality possible.".

Extension Screenshots

screenshot

Download Youtube Auto Quality Extension CRX File

Download Youtube Auto Quality extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Youtube Auto Quality Youtube Auto Quality
ID dggjpamoacejckpnhgnlmajommekebho
Official URL https://chromewebstore.google.com/detail/youtube-auto-quality/dggjpamoacejckpnhgnlmajommekebho
Description Quality settings on Youtube videos will be defaulted to the highest quality possible.
File Size 26.3 KB
Installation Count 21
Current Version 0.2
Last Updated 2021-10-15
Publish Date 2021-10-06
Developer jamesw8dev
Email [email protected]
Payment Type free
Supported Languages 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
        }
    ]
}