Youtube Modal Hider

Youtube Modal Hider

Hide the modal blocking video playback before they start on Youtube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Youtube Modal Hider",
  "version": "4.0",
  "description": "Hide the modal blocking video playback before they start on Youtube",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/jquery.min.js",
        "js/scripts.js"
      ],
      "all_frames": false
    }
  ]
}