Video Pop Out

Video Pop Out

This extension pulls videos out from the current page and into a new, properly-sized browser window.

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 Pop Out",
  "description": "This extension pulls videos out from the current page and into a new, properly-sized browser window.",
  "version": "0.3.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Video Pop Out"
  },
  "content_scripts": [
    {
      "matches": [
        "*://espn.go.com/*"
      ],
      "js": [
        "jquery-2.2.0.min.js",
        "content.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-2.2.0.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "activeTab"
  ]
}