Advanced Profanity Filter

Advanced Profanity Filter

Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Advanced Profanity Filter",
  "short_name": "APF",
  "author": "FrostCo",
  "manifest_version": 2,
  "version": "3.5.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}"
    }
  }
}