FoxFilter

FoxFilter

Recently called "THE Parental Control for Firefox"! FoxFilter is a personal content filter that helps block pornographic and other inappropriate content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "FoxFilter - The content filter!",
  "short_name": "FoxFilter",
  "version": "9.6",
  "manifest_version": 2,
  "description": "FoxFilter helps block pornographic and any other user-defined content. Great for use in your home, business, library or classroom.",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "70.0"
    }
  },
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "options_ui": {
    "page": "html/start.html?show_tip=1",
    "open_in_tab": true
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "/css/hide.css",
    "/css/show.css"
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "contextMenus",
    "storage"
  ]
}