-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmanifest.json
61 lines (51 loc) · 1.54 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
{
"manifest_version": 2,
"name": "FoxyRecon",
"version": "0.23.0",
"description": "A Firefox add-on for OSINT investigations",
"icons": {
"16": "assets/icons/foxyrecon-icon-16.png",
"48": "assets/icons/foxyrecon-icon-48.png"
},
"content_security_policy": "default-src 'self'; img-src 'self' data:; script-src 'self'; style-src 'self'",
"background": {
"scripts": [
"src/utils/storageMigrationUtil.js",
"src/utils/storage.js",
"src/utils/jsonLoader.js",
"src/utils/indicatorparser.js",
"src/utils/utils.js",
"src/utils/graph.js",
"src/background.js"
]
},
"content_scripts": [{
"matches": ["*://*/*"],
"js": [
"src/utils/indicatorparser.js",
"src/utils/utils.js",
"src/utils/graph.js",
"src/content_scripts/graph.js",
"src/content_scripts/add_node_popup.js",
"src/content_scripts/catch.js",
"src/content_scripts/message-box.js",
"src/content_scripts/autofill.js"
],
"css": [
"src/content_scripts/css/addnode-popup.css",
"src/content_scripts/css/message-box.css"
]
}],
"web_accessible_resources": [
"assets/icons/foxyrecon-icon-32.png"
],
"permissions": [
"contextMenus",
"storage"
],
"browser_action": {
"default_icon": "assets/icons/foxyrecon-icon-48.png",
"default_title": "FoxyRecon",
"default_popup": "src/popup/main_popup.html"
}
}