Examine source code of SpoilerGuard

Inspect and view changes in SpoilerGuard source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "SpoilerGuard",
  "version": "1.1.1",
  "description": "Hides posts containing specified words in facebook posts to protect you from spoilers.",
  "options_page": "options.html",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/*"
      ],
      "js": [
        "hidespoilers.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "applications": {
    "gecko": {
      "id": "spoiler-guard@example.com",
      "strict_min_version": "53.0"
    }
  },
  "icons": {
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  }
}