NJIT Schedule Builder Profiles

NJIT Schedule Builder Profiles

This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NJIT Schedule Builder Profiles",
  "manifest_version": 3,
  "version": "0.0.2",
  "permissions": [
    "storage",
    "tabs",
    "clipboardWrite"
  ],
  "description": "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder. ",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "/popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://uisapppr3.njit.edu/scbldr/"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  }
}