YouTube Quality Adjuster

Automatically adjusts the quality of YouTube Videos

Was ist YouTube Quality Adjuster?

YouTube Quality Adjuster ist eine Chrome-Erweiterung, die von hiatamaworkshop entwickelt wurde, und ihr Hauptmerkmal ist "Automatically adjusts the quality of YouTube Videos".

Erweiterungsscreenshots

screenshot

YouTube Quality Adjuster-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Quality Adjuster-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name YouTube Quality Adjuster YouTube Quality Adjuster
ID ohjehldapgfhlmekcencdhikpdjmjpkk
Offizielle URL https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk
Beschreibung Automatically adjusts the quality of YouTube Videos
Dateigröße 27.98 KB
Installationsanzahl 1,445
Aktuelle Version 2.1
Letztes Update 2023-10-04
Veröffentlichungsdatum 2021-02-09
Bewertung 3.92/5 Insgesamt 12 Bewertungen
Entwickler hiatamaworkshop
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}