Force Block: the Star Wars spoiler blocker

Force Block: the Star Wars spoiler blocker

Block spoilers from Star Wars: The Rise of Skywalker, with smart pattern detection and a whitelist for false alarms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Force Block: the Star Wars spoiler blocker",
  "short_name": "Force Block",
  "version": "1.4.0",
  "description": "Block spoilers from Star Wars: The Rise of Skywalker, with smart pattern detection and a whitelist for false alarms.",
  "icons": {
    "16": "/img/icon16.png",
    "48": "/img/icon48.png",
    "128": "/img/icon128.png"
  },
  "browser_action": {
    "default_icon": "/img/icon.png",
    "default_popup": "/popup/popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "/css/style.css"
      ],
      "js": [
        "/js/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    "/*"
  ]
}