forked from jeremywgleeson/BoilerKey-Chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1001 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
36
37
38
39
40
41
42
43
44
{
"name": "Purdue Improvements",
"version": "1.0",
"permissions": [
"cookies",
"storage"
],
"host_permissions": [
"https://api-1b9bef70.duosecurity.com/*",
"https://sso.purdue.edu/idp/profile/SAML2/POST/SSO*"
],
"description": "Improves aspects of using Purdue systems. Includes auto-login, CSS tweaks, and other small changes",
"manifest_version": 3,
"action": {
"default_popup": "dropdown.html"
},
"content_scripts": [
{
"matches": ["https://sso.purdue.edu/idp/profile/SAML2/POST/SSO*"],
"css": [
"login.css"
],
"js": [
"js/darkmode.js",
"js/hotp.js",
"js/boilerkey.js",
"js/content.js"
]
},
{
"matches": ["https://purdue.brightspace.com/d2l/login*", "https://sso.purdue.edu/idp/profile/SAML2/POST/SSO*brightspace*"],
"js": ["js/brightspace.js"]
},
{
"matches": ["https://dining.purdue.edu/menus*"],
"css": [
"menus.css"
]
}
],
"icons": {
"128": "icon.png"
}
}