Picture-in-Picture Extension (by Google)

Watch video using Picture-in-Picture

Что такое Picture-in-Picture Extension (by Google)?

Picture-in-Picture Extension (by Google) - это расширение Chrome, разработанное https://google.com, и его основная функция - "Watch video using Picture-in-Picture".

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

Скачать файл CRX расширения Picture-in-Picture Extension (by Google)

Скачайте файлы расширений Picture-in-Picture Extension (by Google) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Picture-in-Picture (PiP) allows you to watch videos in a floating window (always on top of other windows) so you can keep an eye on what you’re watching while interacting with other sites, or applications.

Keyboard shortcut: Alt + P (⌥ + P on macOS)

Source code: https://github.com/GoogleChromeLabs/picture-in-picture-chrome-extension

By installing this item, you agree to the Google Terms of Service and Privacy Policy at https://www.google.com/intl/en/policies/.                    

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

Название Picture-in-Picture Extension (by Google) Picture-in-Picture Extension (by Google)
ID hkgfoiooedgoejojocmhlaklaeopbecg
Официальный URL https://chromewebstore.google.com/detail/picture-in-picture-extens/hkgfoiooedgoejojocmhlaklaeopbecg
Описание Watch video using Picture-in-Picture
Размер файла 25.6 KB
Количество установок 3,079,162
Текущая Версия 1.11
Последнее Обновление 2022-09-15
Дата публикации 2020-03-31
Рейтинг 3.98/5 Всего 1884 оценок
Разработчик https://google.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/GoogleChromeLabs/picture-in-picture-chrome-extension
URL страницы помощи https://github.com/GoogleChromeLabs/picture-in-picture-chrome-extension
URL страницы политики конфиденциальности https://www.google.com/intl/en/policies
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture-in-Picture Extension (by Google)",
    "description": "Watch video using Picture-in-Picture",
    "version": "1.11",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "38": "assets\/icon38.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "manifest_version": 3
}