-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
33 lines (33 loc) · 921 Bytes
/
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
{
"version": "1.3.6",
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDesc__",
"author": "Mahmood Moghimi, m.moghimi[at]modares.ac.ir",
"homepage_url": "https://moghimi.net/works/PhishDetector",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"default_locale": "en",
"icons": {
"128": "img/icon128.png",
"16": "img/icon16.png",
"32": "img/icon32.png",
"96": "img/icon96.png"
},
"offline_enabled": false,
"background": {
"scripts": ["js/background.js"]
},
"browser_action": {
"default_icon": "img/icon38.png",
"default_popup": "html/popup.html",
"default_title": "Phishing Detector"
},
"content_scripts": [
{
"js": ["js/endScript.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
}
]
}