SquashTV Spoilers

SquashTV Spoilers

Removes names and images from video titles, and time display from the video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SquashTV Spoilers",
  "version": "1.0.8",
  "manifest_version": 3,
  "description": "Removes names and images from video titles, and time display from the video.",
  "content_scripts": [
    {
      "matches": [
        "https://www.squash.tv/",
        "https://www.squash.tv/highlights/*",
        "https://www.squash.tv/tournament/*",
        "https://www.squash.tv/*",
        "https://www.squash.tv/replays/*",
        "https://squash.tv/replays/*"
      ],
      "js": [
        "content_scripts/squashtv-nospoiler.js"
      ],
      "css": [
        "content_scripts/squashtv-nospoiler.css"
      ]
    },
    {
      "matches": [
        "https://geo.dailymotion.com/*"
      ],
      "css": [
        "content_scripts/dailymotion.css"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}