Examine source code of NSFWRedditBlocker

Inspect and view changes in NSFWRedditBlocker 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": "NSFWRedditBlocker",
  "version": "1.0",
  "description": "Redirects to https://reddit.com if a NSFW post or subreddit is detected",
  "icons": {
    "48": "shield-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/r/*"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "blocker.js"
      ]
    }
  ]
}