forked from Security-Experts-Community/siem-monkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
71 lines (69 loc) · 1.55 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"manifest_version": 3,
"name": "SiemMonkey",
"description": "SiemMonkey for MaxPatrol SIEM",
"version": "2.2",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"action": {
"default_icon": {
"19": "img/icon48.png",
"38": "img/icon48.png"
},
"default_title": "SiemMonkey 2.2",
"default_popup": "popup.html"
},
"content_scripts":
[
{
"run_at": "document_idle",
"matches":["http://*/*","https://*/*"],
"js":[
"libs/jquery/jquery-3.5.1.min.js",
"libs/jquery-ui-1.12.1/jquery-ui.min.js",
"libs/d3.js/d3.v4.min.js",
"libs/moment.js/moment-with-locales.js",
"libs/underscore.js/underscore-min.js",
"libs/textarea-helper.js/textarea-helper.js",
"libs/ipaddr.js/ipaddr.min.js",
"update.popup.js",
"processTree.popup.js",
"script.js"],
"css": ["siemMonkey.css","libs/jquery-ui-1.12.1/jquery-ui.min.monkey.css"],
"all_frames": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"img/icon128.png",
"siemMonkey.css",
"customfilters.json",
"fieldaliases.json",
"xhr_override.js",
"libs/jquery-ui-1.12.1/jquery-ui.min.monkey.css"
],
"matches": [
"*://*/*"
]
}
],
"permissions": [
"tabs",
"storage",
"contextMenus"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"options_ui":{
"page": "options.html"
}
}