UIMS Attendance Tracker

UIMS Attendance Tracker

Helps you calculate how much you're away from achieving a perfect attendance.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UIMS Attendance Tracker",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "Helps you calculate how much you're away from achieving a perfect attendance.",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_icon": {
      "19": "img/16.png",
      "38": "img/48.png"
    },
    "default_title": "UIMS Attendance Tracker",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://uims.cuchd.in/*",
        "*://www.uims.cuchd.in/*"
      ],
      "js": [
        "assets/jquery.js",
        "assets/crypto.js",
        "assets/main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "assets/crypto.js",
      "assets/background.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://uims.cuchd.in/uims/*"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}