VTOP 2.0 for VIT Bhopal

VTOP 2.0 for VIT Bhopal

The VTOP that you dreamed for

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VTOP 2.0 for VIT Bhopal",
  "description": "The VTOP that you dreamed for",
  "version": "2.0",
  "author": "Sahil & Atul",
  "permissions": [
    "webRequest",
    "downloads",
    "storage",
    "declarativeContent",
    "activeTab",
    "*://vtop.vitbhopal.ac.in/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": "./images/icon.png"
  },
  "web_accessible_resources": [
    "styles/general/*.css",
    "styles/font/*.css",
    "styles/font/*.ttf"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://vtop.vitbhopal.ac.in/*"
      ],
      "js": [
        "jquery.js",
        "jquery.BlockUI.js",
        "bitmaps.js",
        "coursepage.js",
        "internalmarkspage.js",
        "general.js",
        "captchaparser.js"
      ]
    }
  ]
}