Timetable Exporter

Timetable Exporter

Automates, autofills & exports

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Timetable Exporter",
  "short_name": "TE",
  "description": "Automates, autofills & exports",
  "version": "2.13",
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://timetable.jcu.edu.au/*/login.aspx"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "login.js"
      ]
    },
    {
      "matches": [
        "https://timetable.jcu.edu.au/*/default.aspx"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "default.js"
      ]
    },
    {
      "matches": [
        "https://timetable.jcu.edu.au/*/Reports/Calendar.aspx"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "calendar.js"
      ]
    },
    {
      "matches": [
        "https://timetable.jcu.edu.au/*/swsError.aspx"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "error.js"
      ]
    }
  ]
}