Windowed Fullscreen for Videos

Adds a windowed fullscreen button to all videos.

Что такое Windowed Fullscreen for Videos?

Windowed Fullscreen for Videos - это расширение Chrome, разработанное https://napalighost.com, и его основная функция - "Adds a windowed fullscreen button to all videos.".

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

screenshot
screenshot

Скачать файл CRX расширения Windowed Fullscreen for Videos

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

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

                        Works with most websites that include videos through the HTML5 

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

Название Windowed Fullscreen for Videos Windowed Fullscreen for Videos
ID bkcghongfpfngpdobomhdehbffibkjlh
Официальный URL https://chromewebstore.google.com/detail/windowed-fullscreen-for-v/bkcghongfpfngpdobomhdehbffibkjlh
Описание Adds a windowed fullscreen button to all videos.
Размер файла 16.39 KB
Количество установок 849
Текущая Версия 1.0.0
Последнее Обновление 2022-06-28
Дата публикации 2022-06-28
Рейтинг 4.83/5 Всего 6 оценок
Разработчик https://napalighost.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.napalighost.com/windowed-fullscreen-for-videos
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Windowed Fullscreen for Videos",
    "version": "1.0.0",
    "description": "Adds a windowed fullscreen button to all videos.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "css": [
                "style.css"
            ],
            "js": [
                "init.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "permissions": [
        "storage"
    ]
}