YouTube Fix

YouTube Fix

Fix your worst YouTube nightmares with this easy plugin.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Fix",
  "description": "Fix your worst YouTube nightmares with this easy plugin.",
  "version": "1.0",
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "javascript/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "javascript/content-script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}