Freeslot

Freeslot

A chrome extension to extract timetable from vtop and use in http://freeslot.acmvit.in

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Freeslot",
  "version": "1.1",
  "description": "A chrome extension to extract timetable from vtop and use in http://freeslot.acmvit.in",
  "icons": {
    "16": "ico.png",
    "48": "ico.png",
    "128": "ico.png"
  },
  "permissions": [
    "tabs",
    "https://vtop.vit.ac.in/*"
  ],
  "page_action": {
    "default_icon": "ico.png",
    "default_popup": "popup.html",
    "default_title": "Freeslot"
  },
  "background": {
    "scripts": [
      "event.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://vtop.vit.ac.in/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js"
      ]
    }
  ]
}