forked from yxliang01/Unimelb-WAM-Checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (33 loc) · 938 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"manifest_version": 2,
"name": "Unimelb WAM checker",
"description": "This extension will notify you when your WAM has been changed",
"version": "1.2",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "browser_popup.html"
},
"permissions": [
"alarms",
"tabs",
"notifications"
],
"background": {
"scripts": ["update.js"],
"persistent": true
},
"browser_action": {
"default_title": "WAM",
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
}
},
"content_scripts": [{
"matches": ["https://prod.ss.unimelb.edu.au/student/SM/ResultsDtls*"],
"js": ["bower_components/jquery/dist/jquery.min.js", "injectToPage.js"]
}],
"author": "Xiao Liang Yu"
}