Advanced Profanity Filter

Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Advanced Profanity Filter",
  "short_name": "APF",
  "author": "FrostCo",
  "manifest_version": 2,
  "version": "3.6.0",
  "description": "Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "contextMenus",
    "notifications",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "webFilter.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "options_ui": {
    "chrome_style": false,
    "open_in_tab": true,
    "page": "optionPage.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Advanced Profanity Filter"
  },
  "web_accessible_resources": [
    "audio/*.mp3"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{853d1586-e2ab-4387-a7fd-1f7f894d2651}"
    }
  }
}