-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1011 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
45
46
{
"manifest_version": 3,
"name": "BCP - Exams",
"description": "This extension will inject the css and js files to the BCP exams",
"version": "1.0.0",
"author": "X",
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"activeTab",
"scripting",
"notifications",
"browsingData",
"management",
"cookies",
"storage",
"system.cpu",
"system.storage",
"system.memory",
"system.display"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": ["https://www.campusbcp.com/*"],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icons/icon.jpg",
"48": "icons/icon.jpg",
"128": "icons/icon.jpg"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": ["js/health.js"],
"matches": ["<all_urls>"]
}
],
"short_name": "css js inj"
}