OVC - One Video Control

OVC - One Video Control

One Video Control to rule them all - redefining video interfaces

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OVC - One Video Control",
  "description": "One Video Control to rule them all - redefining video interfaces",
  "version": "1.0.22",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "options_page": "settings.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_idle",
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/one-video-control-16.png",
      "32": "images/one-video-control-32.png",
      "48": "images/one-video-control-48.png",
      "128": "images/one-video-control-128.png"
    }
  },
  "icons": {
    "16": "images/one-video-control-16.png",
    "32": "images/one-video-control-32.png",
    "48": "images/one-video-control-48.png",
    "128": "images/one-video-control-128.png"
  },
  "web_accessible_resources": [
    "assets/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com/analytics.js; object-src 'self'"
}