Popout for YouTube™

Popout for YouTube™

Add a button to YouTube™ to pop the video out into a new resizable window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "5.1.4",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "http://www.youtube.com/*",
    "https://www.youtube.com/*"
  ],
  "content_security_policy": "script-src 'unsafe-eval' 'self' https://www.youtube.com https://s.ytimg.com https://ssl.google-analytics.com; object-src 'self'",
  "background": {
    "scripts": [
      "analytics.js",
      "lib/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/*",
        "https://www.youtube.com/*"
      ],
      "js": [
        "lib/popout_for_youtube.js"
      ],
      "css": [
        "popout_for_youtube.css"
      ]
    }
  ],
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}