-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (33 loc) · 898 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
34
{
"manifest_version": 2,
"name": "ProtonMail Checker",
"description": "This extension notifies you about new messages in your account",
"version": "1.0.2",
"icons": {
"16": "img/favicon_16.png",
"48": "img/favicon_48.png",
"64": "img/favicon.png",
"128": "img/favicon_128.png"
},
"options_page": "html/options.html",
"browser_action": { "default_icon": "img/favicon_grey.png" },
"permissions": [
"webRequest",
"notifications",
"contextMenus",
"storage",
"cookies",
"https://protonmail.ch/*"
],
"content_scripts": [
{
"matches": [
"https://protonmail.ch/*"
],
"js": ["js/content.js"],
"run_at": "document_end"
}
],
"background": { "scripts":["js/jquery-1.8.3.min.js","js/sjcl.js","js/sha.js","js/background.js"] },
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}