YouTube Quality Adjuster

Automatically adjusts the quality of YouTube Videos

Cos'è YouTube Quality Adjuster?

YouTube Quality Adjuster è un'estensione di Chrome sviluppata da hiatamaworkshop, e la sua funzione principale è "Automatically adjusts the quality of YouTube Videos".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Quality Adjuster

Scarica i file di estensione YouTube Quality Adjuster 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

                        Adjust the quality of YouTube Videos automatically.

Only available in the original YouTube page, not the embedded videos.

no adds or any kind of network communication.

Updated Sep/2023                    

Informazioni di Base sull'Estensione

Nome YouTube Quality Adjuster YouTube Quality Adjuster
ID ohjehldapgfhlmekcencdhikpdjmjpkk
URL Ufficiale https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk
Descrizione Automatically adjusts the quality of YouTube Videos
Dimensione del File 27.98 KB
Conteggio Installazioni 1,445
Versione Corrente 2.1
Ultimo Aggiornamento 2023-10-04
Data di Pubblicazione 2021-02-09
Valutazione 3.92/5 Totale 12 Valutazioni
Sviluppatore hiatamaworkshop
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Quality Adjuster",
    "version": "2.1",
    "manifest_version": 3,
    "description": "Automatically adjusts the quality of YouTube Videos",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "youtube_quality.html",
        "default_icon": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "qualityControl.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ]
}