Project CAVE

Project CAVE

Chrome Anti-Virus Extension. It is a google chrome application project aimed to protect the browsing experience of the users.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Project CAVE",
  "description": "Chrome Anti-Virus Extension. It is a google chrome application project aimed to protect the browsing experience of the users.",
  "version": "1.0.0",
  "manifest_version": 2,
  "icons": {
    "16": "image/icon/icon16bk.png",
    "48": "image/icon/icon48bk.png",
    "128": "image/icon/icon128bk.png"
  },
  "browser_action": {
    "default_icon": "image/icon/icon16bk.png",
    "default_title": "CAVE",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "author": "Max Chu Chee Wee",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "cave.js"
      ],
      "run_at": "document_end"
    }
  ]
}