Parental Control - Adult Content Blocker

Parental Control - Adult Content Blocker

Block porn sites and protect your child from adult content. Best Anti-porn addon on the store.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Parental Control - Adult Content Blocker",
  "version": "0.10.18",
  "manifest_version": 2,
  "minimum_chrome_version": "22",
  "description": "Block porn sites and protect your child from adult content. Best Anti-porn addon on the store.",
  "browser_action": {
    "default_icon": "images/icon_19.png",
    "default_title": "MetaCert",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "web_accessible_resources": [
    "images/metacert_logo.png",
    "images/ae_icon_large.png",
    "images/ae_icon_small.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/styles.css",
        "css/tipsy.css"
      ],
      "js": [
        "lib/jquery.js",
        "lib/tipsy.js",
        "js/scripts.js",
        "js/graphics.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "notifications",
    "alarms",
    "cookies",
    "background",
    "unlimitedStorage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/utils/parentalControlsUtils.js",
      "lib/moment.js",
      "lib/lodash.js",
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html"
}