Video Links in a New Media Player Window

Video Links in a New Media Player Window

Popup Youtube, IMDB, Vimeo and Twitvid links in new window with just a 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,
  "name": "Video Links in a New Media Player Window",
  "description": "Popup Youtube, IMDB, Vimeo and Twitvid links in new window with just a video player.",
  "background": {
    "persistent": false,
    "scripts": [
      "init.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "lib/jquery.js",
        "popout_for_videolink.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com;object-src 'self' https://www.youtube.com/ https://www.telly.com/ https://player.vimeo.com/",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "version": "2.2.1"
}