Cyber Guard

Cyber Guard

The browser extension notifies the security status of the website, request the permission to open the domain from malware list.

Additional files are visible only to premium users

manifest.json


{
  "name": "Cyber Guard",
  "version": "1.0.2.0",
  "description": "The browser extension notifies the security status of the website, request the permission to open the domain from malware list.",
  "author": "Jean",
  "engine": "cyber-guard",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>",
    "webRequest",
    "unlimitedStorage",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "background/bundle.js",
      "vendors/bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "content/bundle.js",
        "vendors/bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_title": "Cyber Guard",
    "default_icon": {
      "24": "images/logo_24x24.png",
      "48": "images/logo_48x48.png",
      "96": "images/logo_96x96.png"
    }
  },
  "icons": {
    "24": "images/logo_24x24.png",
    "48": "images/logo_48x48.png",
    "96": "images/logo_96x96.png"
  },
  "web_accessible_resources": [
    "content/*.css",
    "content/*.svg",
    "images/*.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}