Smoothwall Cloud Filter

Smoothwall Cloud Filter

Smoothwall for Education Smoothwall empowers schools to digitally safeguard the students in their care with next-generation web…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Smoothwall Cloud Filter",
  "version": "2.3.0.1",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [
    "alarms",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "identity",
    "identity.email",
    "storage",
    "unlimitedStorage",
    "nativeMessaging",
    "system.memory",
    "enterprise.deviceAttributes",
    "gcm",
    "management",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "main.js"
    ],
    "persistent": true
  },
  "omnibox": {
    "keyword": "smoothwall://"
  },
  "icons": {
    "16": "images/smoothwall-icon-16x16.png",
    "128": "images/smoothwall-icon-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "storage": {
    "managed_schema": "managed-storage-schema.json"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/smoothwall-icon-16x16.png",
      "128": "images/smoothwall-icon-128x128.png"
    },
    "default_title": "Smoothwall Cloud Filter"
  }
}