Let Me Multitask, Bro

Let Me Multitask, Bro

A Chrome extension that allows picture-in-picture mode to be used for videos, even if the website has disabled it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Let Me Multitask, Bro",
  "description": "A Chrome extension that allows picture-in-picture mode to be used for videos, even if the website has disabled it.",
  "version": "0.2.1",
  "author": {
    "email": "[email protected]"
  },
  "homepage_url": "https://github.com/rosettast0ned/let-me-multitask-bro",
  "incognito": "split",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "let_me_multitask_bro16.png",
    "32": "let_me_multitask_bro32.png",
    "48": "let_me_multitask_bro48.png",
    "128": "let_me_multitask_bro128.png"
  },
  "action": {
    "default_icon": "let_me_multitask_bro.png"
  }
}