-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
47 lines (42 loc) · 1.25 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
{
"manifest_version": 2,
"name": "DomAIn",
"version": "1.0",
"description": "Scan url for potential secruity issues using Machine learning",
"homepage_url": "https://www.greycortex.com/research",
"icons": {
"48": "img/base.png"
},
"permissions": ["activeTab", "tabs", "storage", "webNavigation", "contextMenus", "*://*.virustotal.com/*"],
"background": {
"scripts": [
"js/browser-polyfill.js",
"js/tf.min.js",
"js/punycode/punycode.js",
"js/storage.js",
"js/background.js"
]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"all_frames": true,
"js": ["js/browser-polyfill.js","js/content.js"]
}
],
"web_accessible_resources": [
"afterClosePopup.html",
"js/afterClosePopup.js"
],
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": true
},
"browser_action": {
"default_icon": "img/base.png",
"default_title": "DomAin by GreyCortex",
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}