-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
55 lines (55 loc) · 1.59 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
{
"manifest_version": 2,
"name": "UCR MFA Helper",
"version": "2.1.0",
"description": "A chrome extension for auto-filling UCR MFA",
"icons":
{
"16": "img/icon.png",
"48": "img/icon.png",
"128": "img/icon.png"
},
"browser_action":
{
"default_icon": "img/icon.png",
"default_title": "UCR MFA",
"default_popup": "popup.html"
},
"background":
{
"scripts": ["js/jquery-3.4.1.min.js","js/daemon.js"]
},
"content_scripts":
[
{
"matches": ["https://api-24ed243a.duosecurity.com/frame/prompt*"],
"js": ["js/handler.js"],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": ["https://auth.ucr.edu/cas/login?service=*"],
"js": ["js/login.js"],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": ["https://myaccount.ucr.edu/app*"],
"js": ["js/jquery-3.4.1.min.js","js/passcode_handler/getPasscodes.js"],
"run_at":"document_idle",
"all_frames": true
}
],
"permissions":
[
"webRequest",
"storage",
"https://auth.ucr.edu/cas/login?*",
"https://myaccount.ucr.edu/app*",
"https://api-24ed243a.duosecurity.com/frame/web/v1/auth?*",
"notifications"
],
"web_accessible_resources": ["js/inject.js", "js/login_inject.js", "js/duo_inject.js"],
"homepage_url": "https://github.com/mingjun97/ucr_mfa_crx",
"devtools_page": "devtools.html"
}