Youtube Auto Quality

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

Cos'è Youtube Auto Quality?

Youtube Auto Quality è un'estensione di Chrome sviluppata da jamesw8dev, e la sua funzione principale è "Quality settings on Youtube videos will be defaulted to the highest quality possible.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Auto Quality

Scarica i file di estensione Youtube Auto Quality in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Youtube Auto Quality Youtube Auto Quality
ID dggjpamoacejckpnhgnlmajommekebho
URL Ufficiale https://chromewebstore.google.com/detail/youtube-auto-quality/dggjpamoacejckpnhgnlmajommekebho
Descrizione Quality settings on Youtube videos will be defaulted to the highest quality possible.
Dimensione del File 26.3 KB
Conteggio Installazioni 21
Versione Corrente 0.2
Ultimo Aggiornamento 2021-10-15
Data di Pubblicazione 2021-10-06
Sviluppatore jamesw8dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}