Simple YouTube Windowed Fullscreen

Open YouTube videos in fullscreen in it's own window (windowed fullscreen)

Что такое Simple YouTube Windowed Fullscreen?

Simple YouTube Windowed Fullscreen - это расширение Chrome, разработанное https://srnyx.com, и его основная функция - "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)".

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

screenshot

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

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

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

                        Simple YouTube Windowed Fullscreen is an extremely simple extension (only 12 lines of code) that allows you to open YouTube videos in their own pop-up windows.

This is great if you're watching a long video or movie and want to multi-task. Or, you just like being able to see your taskbar and to easily manage the YouTube video's display.

This was made in a few hours (had to learn a bit of JavaScript and Chrome API), but I'd be happy to add any new features and to fix any bugs!

GitHub (source code): https://simple-youtube-windowed-fullscreen.srnyx.com                    

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

Название Simple YouTube Windowed Fullscreen Simple YouTube Windowed Fullscreen
ID pbihmiiillncegkbfnfkmlcjkpagehgh
Официальный URL https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh
Описание Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
Размер файла 21.2 KB
Количество установок 20
Текущая Версия 1.0.0
Последнее Обновление 2023-08-25
Дата публикации 2023-03-29
Рейтинг 4.00/5 Всего 3 оценок
Разработчик https://srnyx.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://srnyx.com
URL страницы помощи https://srnyx.com/discord
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.0",
    "name": "Simple YouTube Windowed Fullscreen",
    "description": "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)",
    "author": "[email protected]",
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "80": "icons\/icon80.png",
            "96": "icons\/icon96.png",
            "112": "icons\/icon112.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Open video in windowed fullscreen"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    }
}