Picture In Picture Tab

Picture In Picture Tab

Allow you to create a Picture In Picture for any tabs using streaming as PIP video

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Picture In Picture Tab",
  "version": "1.0",
  "description": "Allow you to create a Picture In Picture for any tabs using streaming as PIP video",
  "manifest_version": 2,
  "permissions": [],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+P",
        "mac": "Alt+Shift+P"
      },
      "description": "pipTab"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "RecordRTC.js",
        "playerScript.js"
      ]
    }
  ],
  "browser_action": {},
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "minimum_chrome_version": "69.0.3483.0"
}