AntiSwear

AntiSwear

This is an app that can protect your child or yourself from derogatory words.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "AntiSwear"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery.js",
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "This is an app that can protect your child or yourself from derogatory words.",
  "icons": {
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "manifest_version": 2,
  "name": "AntiSwear",
  "permissions": [
    "storage"
  ],
  "short_name": "AntiSwear",
  "version": "1.0"
}