Windowed - floating Youtube/every website

Windowed - floating Youtube/every website

Changes fullscreen buttons to go into a popup. Works for every website that uses fullscreen, including Youtube, Vimeo, Netflix

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Windowed - floating Youtube/every website",
  "short_name": "Windowed",
  "description": "Changes fullscreen buttons to go into a popup. Works for every website that uses fullscreen, including Youtube, Vimeo, Netflix",
  "developer": {
    "name": "Michiel Dral",
    "url": "https://dral.eu/"
  },
  "version": "28",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "applications": {
    "gecko": {
      "id": "{477dbe5e-1742-4641-a2c3-b6113bb5cf6e}"
    }
  },
  "browser_action": {
    "default_popup": "Popup/Popup.html",
    "default_icon": {
      "32": "/Images/[email protected]"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "Vendor/browser-polyfill.min.js",
        "Content.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "Vendor/browser-polyfill.min.js",
      "Background/BackgroundEntry.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "Images/*"
  ],
  "icons": {
    "16": "Icons/Icon_16.png",
    "32": "Icons/Icon_32.png",
    "64": "Icons/Icon_64.png",
    "128": "Icons/Icon_128.png"
  }
}