Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Allocate Schedule Visualiser",
"icons": {
"16": "logos\/logo.png",
"32": "logos\/logo.png",
"48": "logos\/logo_48.png",
"128": "logos\/logo_128.png"
},
"version": "1.3",
"description": "A Chrome extension that retrieves all your unit timeslots from allocate, and helps visualise your best suited uni schedule.",
"permissions": [
"debugger",
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"https:\/\/mytimetable.rmit.edu.au\/odd\/student*"
],
"background": {
"service_worker": "core\/background.js",
"type": "module"
},
"action": {
"default_popup": "core\/popup\/popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/mytimetable.rmit.edu.au\/odd\/student*"
],
"js": [
"core\/content.js"
]
}
]
}