-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·54 lines (54 loc) · 1.26 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
{
"name": "Stegosaur",
"version": "0.0.1",
"manifest_version": 2,
"options_page": "options.html",
"description": "PGP + Steganography!",
"homepage_url": "https://www.illinois.edu",
"background": {
"scripts": [
"main.js",
"jquery-3.1.1.min.js",
"sjcl.js",
"steganography.js"
],
"persistent": true
},
"browser_action": {
"default_title": "Inject!",
"default_popup": "popup.html"
},
"permissions": [
"https://mail.google.com/*",
"https://inbox.google.com/*",
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"jquery-3.1.1.min.js",
"inboxsdk.js",
"openpgp.min.js",
"pgp.js",
"main.js",
"sjcl.js",
"steganography.js"
]
}
],
"web_accessible_resources": [
"imageselect.html",
"imageselect.js",
"inboxsdk.js",
"openpgp.min.js",
"jquery-3.1.1.min.js",
"main.js",
"pgp.js",
"sjcl.js",
"steganography.js"
]
}