Mindfully. Hide YouTube End Cards

Mindfully. Hide YouTube End Cards

Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mindfully. Hide YouTube End Cards",
  "version": "2.0.2",
  "description": "Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip",
  "permissions": [
    "declarativeContent"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "pages/popup.html",
    "default_title": "Mindfully. Hides YouTube Distractions"
  },
  "options_page": "pages/installed.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ],
      "all_frames": false
    }
  ],
  "icons": {
    "16": "images/icon128.png",
    "32": "images/icon128.png",
    "48": "images/icon128.png",
    "128": "images/icon128.png"
  }
}