Pop-out Youtube

Pop-out Youtube

Opens your current Youtube video in a new embed window that fills the size of the window. Better than full screen!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pop-out Youtube",
  "description": "Opens your current Youtube video in a new embed window that fills the size of the window. Better than full screen!",
  "version": "1.0",
  "commands": {
    "command": {
      "suggested_key": {
        "default": "Ctrl+Shift+5"
      },
      "description": "Toggle feature foo",
      "global": true
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon38.png",
    "default_title": "Video Pop-Out"
  },
  "permissions": [
    "tabs",
    "declarativeContent",
    "contextMenus",
    "http://*/",
    "https://*/"
  ],
  "manifest_version": 2
}