RegistrationBot

RegistrationBot

This extension will alert you when the KSU course you want has an open seat.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RegistrationBot",
  "description": "This extension will alert you when the KSU course you want has an open seat.",
  "version": "0.0.0.7",
  "icons": {
    "16": "Logo16.png",
    "48": "Logo48.png",
    "128": "Logo128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.12.3.min.js",
        "checksite.user.js"
      ],
      "matches": [
        "https://owlexpress.kennesaw.edu/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "notifications",
    "storage"
  ]
}