NSFW All

NSFW All

Adds NSFW posts to the /r/all feed on reddit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NSFW All",
  "description": "Adds NSFW posts to the /r/all feed on reddit",
  "version": "1.1",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/r/all*"
      ],
      "js": [
        "nsfw.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "resources": [
        "html/submission.html"
      ]
    }
  ],
  "action": {
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "icons/icon128.png"
  }
}