NBAspect

Corrects aspect ratio of the NBA League Pass web player when viewing fullscreen on non 16:9 monitor. Not affiliated with the NBA.

Что такое NBAspect?

NBAspect - это расширение Chrome, разработанное Teon, и его основная функция - "Corrects aspect ratio of the NBA League Pass web player when viewing fullscreen on non 16:9 monitor. Not affiliated with the NBA.".

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

screenshot

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

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

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

                        NBA League Pass web viewer assumes a 16:9 aspect ratio screen, meaning part of the picture is cropped when viewed on in aspect ratios (such as ultrawide). This extension calculates the actual aspect ratio of your screen and resizes the video appropriately.                    

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

Название NBAspect NBAspect
ID hkibffjccdcckhccppkdgcipjnlpniji
Официальный URL https://chromewebstore.google.com/detail/nbaspect/hkibffjccdcckhccppkdgcipjnlpniji
Описание Corrects aspect ratio of the NBA League Pass web player when viewing fullscreen on non 16:9 monitor. Not affiliated with the NBA.
Размер файла 21.99 KB
Количество установок 70
Текущая Версия 1.0
Последнее Обновление 2023-04-19
Дата публикации 2023-04-18
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Teon
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NBAspect",
    "version": "1.0",
    "description": "Corrects aspect ratio of the NBA League Pass web player when viewing fullscreen on non 16:9 monitor. Not affiliated with the NBA.",
    "author": "[email protected]",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.nba.com\/game\/*"
            ]
        }
    ]
}