YouTube Quality Adjuster

Automatically adjusts the quality of YouTube Videos

Co to jest YouTube Quality Adjuster?

YouTube Quality Adjuster to rozszerzenie Chrome opracowane przez hiatamaworkshop, a jego główną funkcją jest „Automatically adjusts the quality of YouTube Videos”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Quality Adjuster

Pobierz pliki rozszerzeń YouTube Quality Adjuster w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Quality Adjuster YouTube Quality Adjuster
ID ohjehldapgfhlmekcencdhikpdjmjpkk
Oficjalny URL https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk
Opis Automatically adjusts the quality of YouTube Videos
Rozmiar pliku 27.98 KB
Liczba instalacji 1,445
Aktualna Wersja 2.1
Ostatnia Aktualizacja 2023-10-04
Data Publikacji 2021-02-09
Ocena 3.92/5 Łącznie 12 Oceny
Deweloper hiatamaworkshop
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}