YouTube Quality Adjuster

Automatically adjusts the quality of YouTube Videos

Что такое YouTube Quality Adjuster?

YouTube Quality Adjuster - это расширение Chrome, разработанное hiatamaworkshop, и его основная функция - "Automatically adjusts the quality of YouTube Videos".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YouTube Quality Adjuster

Скачайте файлы расширений YouTube Quality Adjuster в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название YouTube Quality Adjuster YouTube Quality Adjuster
ID ohjehldapgfhlmekcencdhikpdjmjpkk
Официальный URL https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk
Описание Automatically adjusts the quality of YouTube Videos
Размер файла 27.98 KB
Количество установок 1,445
Текущая Версия 2.1
Последнее Обновление 2023-10-04
Дата публикации 2021-02-09
Рейтинг 3.92/5 Всего 12 оценок
Разработчик hiatamaworkshop
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
    ]
}