AutoJoomer

AutoJoomer

AutoJoomer is a Chrome extension for IIIT Kottayam students that ensures instance access to their timetables, timetables, mess menu…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AutoJoomer",
  "version": "3.0.3",
  "manifest_version": 3,
  "icons": {
    "128": "src/images/icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://lms.iiitkottayam.ac.in/*",
        "https://lmsone.iiitkottayam.ac.in/*",
        "http://*/fgtauth*"
      ],
      "js": [
        "/src/js/logger.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "AutoJoomer",
    "default_popup": "/src/js/popup.html"
  }
}