PiP Anywhere

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

什麼是PiP Anywhere?

PiP Anywhere是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Allows activating picture in picture mode from html5 players that block right click”。

擴展截圖

screenshot

下載PiP Anywhere擴展crx文件

下載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
官方網址 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
        }
    ]
}