VideoNail - Floating YouTube

VideoNail - Floating YouTube

Watch YouTube videos on any site in a floating, always on top window. Scroll down to the comment section to see it in action! The player will stay on the screen even after navigating to another site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "VideoNail - Floating YouTube PiP Player",
  "description": "Watch YouTube videos on any site in a floating, always on top window.",
  "version": "0.2.9resigned1",
  "browser_action": {
    "default_title": "VideoNail",
    "default_popup": "popupMenu.html",
    "default_icon": {
      "16": "assets/VideoNail_x16.png",
      "32": "assets/VideoNail_x32.png",
      "48": "assets/VideoNail_x48.png",
      "64": "assets/VideoNail_x64.png",
      "128": "assets/VideoNail_x128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "videonail.css"
      ],
      "js": [
        "functions.js",
        "global-vars.js",
        "handlers.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "assets/VideoNail_x16.png",
    "32": "assets/VideoNail_x32.png",
    "48": "assets/VideoNail_x48.png",
    "64": "assets/VideoNail_x64.png",
    "128": "assets/VideoNail_x128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "http://*/",
    "https://*/",
    "webNavigation",
    "storage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "browser-script.js",
    "assets/window-minimize.svg",
    "assets/plus.svg",
    "assets/times.svg"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{763e266c-38e4-411f-9dc1-77e66fc18878}"
    }
  }
}