Attendify

Attendify

The most accurate attendance calculator that lets you know how many leaves you can take without being debarred from exams

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Attendify",
  "version": "1.9",
  "description": "The most accurate attendance calculator that lets you know how many leaves you can take without being debarred from exams",
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webRequest"
  ],
  "host_permissions": [
    "*://vtop.vit.ac.in/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://vtop.vit.ac.in/*"
      ],
      "js": [
        "attendancepage.js"
      ]
    }
  ]
}