Fit YT to Width

Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.

Что такое Fit YT to Width?

Fit YT to Width - это расширение Chrome, разработанное Andrew Lansing, и его основная функция - "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".

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

screenshot
screenshot

Скачать файл CRX расширения Fit YT to Width

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

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

                        Tip: Chromebook users can make use of the alt + [ and alt + ] shortcuts to resize windows to fit half of your screen as seen in the screenshot                    

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

Название Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
Официальный URL https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
Описание Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
Размер файла 7.14 KB
Количество установок 167
Текущая Версия 1.2
Последнее Обновление 2017-07-18
Дата публикации 2017-07-18
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Andrew Lansing
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fit YT to Width",
    "version": "1.2",
    "description": "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Fit YT to Witdh"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/www.youtube.com\/*",
        "tabs"
    ],
    "manifest_version": 2
}