Embedded YouTube Fullscreen

Embedded YouTube Fullscreen

Makes it possible to view embedded Youtube videos in full screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Embedded YouTube Fullscreen",
  "version": "0.0.0.3",
  "manifest_version": 2,
  "description": "Makes it possible to view embedded Youtube videos in full screen. ",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "48": "icon48.png"
  }
}