Picture in Picture

Allows switch to picture in picture mode for sites where blocked right mouse click

什麼是Picture in Picture?

Picture in Picture是由maniac開發的Chrome擴展程式,該擴展的主要功能是“Allows switch to picture in picture mode for sites where blocked right mouse click”。

擴展截圖

screenshot

下載Picture in Picture擴展crx文件

下載Picture in Picture擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                                            

擴展基本資訊

名稱 Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
官方網址 https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
簡介 Allows switch to picture in picture mode for sites where blocked right mouse click
檔案大小 19.24 KB
安裝次數 15
目前版本 0.0.1
更新時間 2018-12-20
上架時間 2018-12-18
評分 5.00/5 共 1 次評分
開發者 maniac
付費類型 free
擴展官網 https://github.com/the-maniac/picture-in-picture
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Picture in Picture",
    "short_name": "PiP",
    "description": "Allows switch to picture in picture mode for sites where blocked right mouse click",
    "version": "0.0.1",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "others.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab"
    ]
}