-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
79 lines (79 loc) · 1.9 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
72
73
74
75
76
77
78
79
{
"name": "ZecOps Anti-Phishing Extension",
"version": "1.0.5",
"description": "Augment the web with indicators that help detect phishing attempts",
"browser_specific_settings": {
"gecko": {
"id": "anti-phishing-extension@zecops.com"
}
},
"content_scripts": [
{
"css": [
"libraries/tippy.css",
"website_info.css"
],
"js": [
"libraries/browser-polyfill.min.js",
"libraries/color-hash.js",
"libraries/crc32.js",
"libraries/popper.min.js",
"libraries/tippy.umd.min.js",
"functions.js",
"website_info.js",
"content_scripts/content_scripts.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*/*"
],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_start"
}
],
"background": {
"scripts": [
"libraries/browser-polyfill.min.js",
"libraries/psl.min.js",
"libraries/punycode.min.js",
"functions.js",
"background/domain_ranking.js",
"background/background.js"
]
},
"permissions": [
"https://downloads.majestic.com/majestic_million.csv.",
"storage",
"unlimitedStorage",
"history",
"tabs"
],
"browser_action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
}
},
"options_ui": {
"page": "options/options.html",
"browser_style": true,
"chrome_style": true,
"open_in_tab": false
},
"icons": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"manifest_version": 2
}