Block NSFW posts from Reddit at work

Block NSFW posts from Reddit at work

Sometimes you browse reddit at work. We get it... we do it too. But randomly clicking a NSFW post isn't worth getting fired over...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Block NSFW posts from Reddit at work",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Sometimes you browse reddit at work. We get it... we do it too. But randomly clicking a NSFW post isn't worth getting fired over...",
  "page_action": {},
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "mystyles.js"
      ]
    }
  ]
}