Video Expand

Video Expand

Expands YouTube videos to fill your web browser window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Expand",
  "version": "1.0",
  "description": "Expands YouTube videos to fill your web browser window.",
  "icons": {
    "16": "icons/icon_16x16.png",
    "48": "icons/icon_48x48.png",
    "128": "icons/icon_128x128.png"
  },
  "page_action": {
    "default_icon": "icons/pa_expand.png",
    "default_title": "expand"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/watch?*"
      ],
      "css": [
        "css/expand.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "*://www.youtube.com/watch?*"
  ],
  "manifest_version": 2
}