forked from SteffQing/OPSec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (50 loc) · 1.23 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
{
"manifest_version": 2,
"name": "Aegis Extension",
"short_name": "Aegis",
"description": "Protect yourself from phishing attacks.",
"version": "1.0.1.10",
"author": "AbstraLabs",
"browser_action": {
"default_icon": "img/tab-icon.png",
"default_title": "Aegis",
"default_popup": "html/index.html"
},
"icons": {
"16": "./img/tab-icon16.png",
"32": "./img/tab-icon32.png",
"48": "./img/tab-icon48.png",
"128": "./img/tab-icon.png"
},
"background": {
"scripts": ["js/jquery-3.3.1.min.js", "js/background.js"]
},
"externally_connectable": {
"matches": [
"https://www.phishfort.com/login",
"https://www.phishfort.com/profile"
]
},
"web_accessible_resources": [
"html/warning.html",
"html/modal.html",
"img/twitter-whitelisted.png"
],
"permissions": ["tabs", "webRequest", "webRequestBlocking", "<all_urls>"],
"content_scripts": [
{
"run_at": "document_end",
"matches": ["https://twitter.com/*"],
"js": ["js/twitter.js"]
},
{
"run_at": "document_end",
"matches": ["http://*/*", "https://*/*"],
"js": ["js/addressBlacklist.js"]
},
{
"matches": ["<all_urls>"],
"js": ["content_script.js"]
}
]
}