YouTube Quality Adjuster

Automatically adjusts the quality of YouTube Videos

Qu'est-ce que YouTube Quality Adjuster ?

YouTube Quality Adjuster est une extension Chrome développée par hiatamaworkshop, et sa fonction principale est "Automatically adjusts the quality of YouTube Videos".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Quality Adjuster

Téléchargez les fichiers d'extension YouTube Quality Adjuster au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom YouTube Quality Adjuster YouTube Quality Adjuster
ID ohjehldapgfhlmekcencdhikpdjmjpkk
URL Officiel https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk
Description Automatically adjusts the quality of YouTube Videos
Taille du Fichier 27.98 KB
Nombre d'Installations 1,445
Version Actuelle 2.1
Dernière Mise à Jour 2023-10-04
Date de Publication 2021-02-09
Évaluation 3.92/5 Total 12 Évaluations
Développeur hiatamaworkshop
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}