NOOT NOOT

NOOT NOOT

Replaces swear words with NOOT NOOT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NOOT NOOT",
  "version": "1.1.0",
  "version_name": "Chips Release",
  "description": "Replaces swear words with NOOT NOOT.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "author": "Andrea Garcia",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "noot.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "swear.json"
  ]
}