Twitch && Youtube spoiler-free

Twitch && Youtube spoiler-free

No more spoilers watching TWITCH VODS and YOUTUBE videos. Enjoy watching twitch vods and youtube videos by preventing spoilers…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Twitch && Youtube spoiler-free",
  "version": "1.6.0",
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_title": "Hide Spoilers!",
    "default_popup": "index.html#/popup"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/youtube-js.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "js/twitch-js.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "assets/iconSpoilerFree.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/twitch-remove-duration-end.js"
      ],
      "matches": [
        "https://www.twitch.tv/*"
      ]
    }
  ],
  "short_name": "TWVODFREE",
  "update_url": "https://clients2.google.com/service/update2/crx"
}