Browser JSGuard

Browser JSGuard

An Addon for Detecting Malicious and Suspicious Webpages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Browser JSGuard",
  "short_name": "Protects from JavaScript threats",
  "version": "1.0.0.17",
  "manifest_version": 2,
  "description": "An Addon for Detecting Malicious and Suspicious Webpages.",
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "cdac18.png",
    "default_title": "Webpage Behavior Report"
  },
  "author": "C-DAC, Hyderabad",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "ci.content.pack.js",
        "jquery.js",
        "bB.js",
        "dD.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "ci.browser.helper.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "homepage_url": "http://cdac.in/index.aspx?id=cs_eps_end_point_security",
  "permissions": [
    "tabs",
    "webNavigation",
    "<all_urls>"
  ]
}