Mobicip Parental Control with Screen Time

Mobicip Parental Control with Screen Time

Create a safe experience for your family using Mobicip's powerful parental control software with internet filter and screen time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mobicip Parental Control with Screen Time",
  "short_name": "Mobicip",
  "version": "3.2",
  "description": "Create a safe experience for your family using Mobicip's powerful parental control software with internet filter and screen time.",
  "icons": {
    "128": "images/favicon.png"
  },
  "options_page": "html/options.html",
  "background": {
    "page": "html/background.html"
  },
  "web_accessible_resources": [
    "images/*.png",
    "css/*.css",
    "script/*.js",
    "html/*.html"
  ],
  "content_security_policy": "script-src 'self' https://*.google.com https://*.gstatic.com https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js; object-src 'self'",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "proxy",
    "alarms",
    "identity",
    "identity.email",
    "management",
    "idle"
  ],
  "browser_action": {
    "default_title": "Mobicip",
    "default_icon": "images/favicon.png",
    "default_popup": "html/mobicip_popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}