Visible Internet Student

Visible Internet Student

Helping protect the wellbeing of children

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Visible Internet Student",
  "description": "Helping protect the wellbeing of children",
  "version": "1.1.0",
  "browser_action": {
    "default_icon": "images/256X256.png",
    "default_title": "Visible Internet Student"
  },
  "icons": {
    "128": "images/128X128.png"
  },
  "background": {
    "scripts": [
      "js/background_vendor.js",
      "js/background_app.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content_vendor.js",
        "js/content_app.js"
      ],
      "css": [
        "css/modal_window.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "geolocation",
    "tabs",
    "<all_urls>",
    "storage",
    "gcm",
    "notifications",
    "identity",
    "identity.email"
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "images/*",
    "css/*"
  ]
}