Youtube Auto Quality

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

Wat is Youtube Auto Quality?

Youtube Auto Quality is een Chrome-extensie ontwikkeld door jamesw8dev, en de belangrijkste functie is "Quality settings on Youtube videos will be defaulted to the highest quality possible.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Youtube Auto Quality

Download Youtube Auto Quality-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Youtube Auto Quality Youtube Auto Quality
ID dggjpamoacejckpnhgnlmajommekebho
Officiële URL https://chromewebstore.google.com/detail/youtube-auto-quality/dggjpamoacejckpnhgnlmajommekebho
Beschrijving Quality settings on Youtube videos will be defaulted to the highest quality possible.
Bestandsgrootte 26.3 KB
Aantal Installaties 21
Huidige Versie 0.2
Laatst Bijgewerkt 2021-10-15
Publicatiedatum 2021-10-06
Ontwikkelaar jamesw8dev
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}