Picture In Picture

Picture In Picture

Picture in picture. The extension allows you to attach video to all windows of your operating system.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.4",
  "name": "__MSG_name__",
  "description": "Picture in picture. The extension allows you to attach video to all windows of your operating system.",
  "icons": {
    "128": "assets/128-dark.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "background/bg.js"
    ]
  },
  "browser_action": {},
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "assets/*.png"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content_scripts/PIP.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ]
}