-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·60 lines (60 loc) · 1.49 KB
/
manifest.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.49 KB
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
56
57
58
59
60
{
"manifest_version": 3,
"name": "GCKey-IRCC Login Automation",
"description": "Chrome Extension for GCKey-IRCC Login Automation",
"version": "1.0",
"permissions": [
"storage"
],
"host_permissions" : [
"https://clegc-gckey.gc.ca/*",
"https://www.canada.ca/en/immigration-refugees-citizenship/services/application/account.html",
"https://onlineservices-servicesenligne.cic.gc.ca/mycic/termsAndConditions",
"https://onlineservices-servicesenligne.cic.gc.ca/mycic/askSecurityQuestion"
],
"action": {
"default_icon": {
"19": "images/icons/19.png",
"38": "images/icons/38.png"
},
"default_popup": "popup.html"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https://www.canada.ca/en/immigration-refugees-citizenship/services/application/account.html"
],
"js": [
"jquery-3.1.0.min.js",
"content_gckey_init.js"
]
},
{
"matches": [
"https://clegc-gckey.gc.ca/*"
],
"js": [
"jquery-3.1.0.min.js",
"content_login.js"
]
},
{
"matches": [
"https://onlineservices-servicesenligne.cic.gc.ca/mycic/termsAndConditions",
"https://onlineservices-servicesenligne.cic.gc.ca/mycic/askSecurityQuestion"
],
"js": [
"jquery-3.1.0.min.js",
"content_security.js"
]
}
],
"icons": {
"16": "images/icons/16.png",
"19": "images/icons/19.png",
"38": "images/icons/38.png",
"64": "images/icons/64.png",
"128": "images/icons/128.png"
}
}