Bleep It!

Bleep It!

Removes offensive words from webpages and replaces them with symbols or random words.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bleep It!",
  "description": "Removes offensive words from webpages and replaces them with symbols or random words.",
  "version": "1.3",
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "tabs",
    "<all_urls>",
    "storage",
    "notifications"
  ],
  "browser_action": {
    "default_icon": "icon16.png"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.1.0.min.js",
        "replaceText.js",
        "removeSwears.js",
        "options.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "badwords.txt",
    "goodwords.txt"
  ],
  "manifest_version": 2
}