Picture in Picture

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

What is Picture in Picture?

Picture in Picture is a Chrome extension developed by maniac, and its main feature is "Allows switch to picture in picture mode for sites where blocked right mouse click".

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

                                            

Extension Basic Information

Name Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
Official URL https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
Description Allows switch to picture in picture mode for sites where blocked right mouse click
File Size 19.24 KB
Installation Count 15
Current Version 0.0.1
Last Updated 2018-12-20
Publish Date 2018-12-18
Rating 5.00/5 Total 1 Ratings
Developer maniac
Payment Type free
Extension Website https://github.com/the-maniac/picture-in-picture
Supported Languages 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"
    ]
}