Floating Video Player

Floating Video Player

Watch videos using Picture-in-Picture mode (Floating Video Player).

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.0.0",
  "name": "__MSG_application_title__",
  "default_locale": "en",
  "description": "__MSG_application_description__",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/background.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icons8-tv-show-16.png",
    "32": "images/icons8-tv-show-32.png",
    "48": "images/icons8-tv-show-48.png",
    "64": "images/icons8-tv-show-64.png",
    "128": "images/icons8-tv-show-128.png"
  },
  "browser_action": {
    "default_popup": "background.html",
    "default_icon": {
      "16": "images/icons8-tv-show-16.png",
      "32": "images/icons8-tv-show-32.png",
      "48": "images/icons8-tv-show-48.png",
      "64": "images/icons8-tv-show-64.png",
      "128": "images/icons8-tv-show-128.png"
    }
  },
  "background": {
    "scripts": [
      "/js/update-conf.js",
      "/js/update.min.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "https://*.freebusinessapps.net/*"
  ]
}