Swearing Substitution

Swearing Substitution

Replaces common curse words with their softer equivalents

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Swearing Substitution",
  "short_name": "Curse Replacement",
  "description": "Replaces common curse words with their softer equivalents",
  "version": "0.0.0.8",
  "icons": {
    "16": "icon_16.png",
    "19": "icon_19.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery-1.11.1.min.js",
        "myscript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ]
}