Curse Block

Curse Block

Replace all the curses and bad words on the web with anything you or I chose in a user-friendly way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Curse Block",
  "short_name": "CurseBlock",
  "manifest_version": 2,
  "version": "1.0",
  "options_page": "options.html",
  "description": "Replace all the curses and bad words on the web with anything you or I chose in a user-friendly way.",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "Curse_BlockIconNEW32.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "Curse_BlockIconNEW16.png",
    "32": "Curse_BlockIconNEW32.png",
    "48": "Curse_BlockIconNEW48.png",
    "128": "Curse_BlockIconNEW128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "myscript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ]
}