Picture in Picture

Provide PIP function for Youtube, Bilibili and so on.

What is Picture in Picture?

Picture in Picture is a Chrome extension developed by https://www.johnzhang.xyz, and its main feature is "Provide PIP function for Youtube, Bilibili and so on.".

Extension Screenshots

screenshot

Download Picture in Picture Extension CRX File

Download Picture in Picture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Picture-in-Picture (PiP) Mode allows you to watch videos in a floating window (always on top of other windows), this feature was support late last year and this extension would support other sites like Youtube and so on.                    

Extension Basic Information

Name Picture in Picture Picture in Picture
ID macihajaciflkkmodijnkfjmpikhjepe
Official URL https://chrome.google.com/webstore/detail/picture-in-picture/macihajaciflkkmodijnkfjmpikhjepe
Description Provide PIP function for Youtube, Bilibili and so on.
File Size 57.96 KB
Installation Count 305
Current Version 1.0
Last Updated 2019-02-01
Publish Date 2019-01-28
Rating 5.00/5 Total 2 Ratings
Developer https://www.johnzhang.xyz
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "css": [
                "sites\/youtube\/pip.css"
            ],
            "js": [
                "sites\/youtube\/pip.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "description": "Provide PIP function for Youtube, Bilibili and so on.",
    "name": "Picture in Picture",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "assets\/pip512.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "assets\/pip48.png",
        "128": "assets\/pip128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    },
    "permissions": [
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "VJB.css",
        "VJB-finishCSS.css"
    ],
    "minimum_chrome_version": "69.0.3483.0"
}