Ultimate Profanity Filter

Ultimate Profanity Filter

The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ultimate Profanity Filter",
  "version": "0.4.1",
  "description": "The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "content_script_reddit.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ]
}