Attendance Calulator

Attendance Calulator

Allows VIT students to calculate attendance on the login itself

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Attendance Calulator",
  "version": "1",
  "author": "Suman Das",
  "description": "Allows VIT students to calculate attendance on the login itself",
  "content_scripts": [
    {
      "matches": [
        "*://vtop.vit.ac.in/student/attn_report.asp?sem=*&fmdt=*&todt=*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "index.html"
  }
}