PiP Anywhere

Allows activating picture in picture mode from html5 players that block right click

Что такое PiP Anywhere?

PiP Anywhere - это расширение Chrome, разработанное Unknown, и его основная функция - "Allows activating picture in picture mode from html5 players that block right click".

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

screenshot

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

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

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

                        Can be used to activate picture in picture mode for html 5 players that dont allow right click                    

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

Название PiP Anywhere PiP Anywhere
ID lkhcdbmhbdacbjhmdgccgidfifehcjne
Официальный URL https://chromewebstore.google.com/detail/pip-anywhere/lkhcdbmhbdacbjhmdgccgidfifehcjne
Описание Allows activating picture in picture mode from html5 players that block right click
Размер файла 5.14 KB
Количество установок 25
Текущая Версия 1.2
Последнее Обновление 2019-01-05
Дата публикации 2019-01-05
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PiP Anywhere",
    "version": "1.2",
    "description": "Allows activating picture in picture mode from html5 players that block right click",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/watch\/*",
                "https:\/\/tiwi.kiwi\/*",
                "https:\/\/mp4upload.com\/*",
                "https:\/\/streamango.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ]
}