-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
33 lines (32 loc) · 955 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
{
"background": {
"page": "html/background.html"
},
"browser_action": {
"default_icon": "img/icon512.png",
"default_popup": "html/popup.html"
},
"content_scripts": [ {
"all_frames" : true,
"js": ["lib/jquery-3.2.1.min.js", "js/login_Tritonlink.js"],
"matches": [ "*://a4.ucsd.edu/tritON/Authn/*" ]
}, {
"all_frames" : true,
"js": ["lib/jquery-3.2.1.min.js", "js/schedule.js"],
"matches": [ "*://act.ucsd.edu/myTritonlink20/display.htm" ]
},{
"all_frames" : true,
"js": ["lib/jquery-3.2.1.min.js", "js/login_Tritoned.js" ],
"matches": [ "*://tritoned.ucsd.edu/*" ]
}],
"description": "Chrome Extension for UCSD",
"icons": {
"16": "img/ic16.png",
"48": "img/ic48.png",
"128": "img/ic128.png"
},
"manifest_version": 2,
"name": "TritonAssistant",
"permissions": [ "storage" ],
"version": "1.0"
}