Full Screen Video for Youtube and more

Full Screen Video for Youtube and more

A plugin for making video player full screen size in YouTube, Vimeo, Dailymotion and some more video sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Full Screen Video for Youtube and more",
  "short_name": "full-screen-video-youtube-and-more",
  "description": "A plugin for making video player full screen size in YouTube, Vimeo, Dailymotion and some more video sites.",
  "version": "1.3.2",
  "author": "010 Pixel",
  "permissions": [
    "*://youtube.com/*",
    "*://www.youtube.com/*",
    "*://vimeo.com/*",
    "*://www.vimeo.com/*",
    "*://dailymotion.com/*",
    "*://www.dailymotion.com/*",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "images/icon16.png"
  },
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "96": "images/icon96.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js",
      "js/loadscript.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/styles.min.css"
      ],
      "matches": [
        "*://www.youtube.com/*",
        "*://youtube.com/*",
        "*://www.vimeo.com/*",
        "*://vimeo.com/*",
        "*://dailymotion.com/*",
        "*://www.dailymotion.com/*"
      ],
      "js": [
        "js/myapp.js"
      ],
      "run_at": "document_end"
    }
  ]
}