Youtube popup blocker

Youtube popup blocker

People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube popup blocker",
  "manifest_version": 2,
  "version": "2.0",
  "permissions": [
    "https://www.youtube.com/*",
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "rb_active_16.png",
    "128": "fyt_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {}
}