-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (45 loc) · 1.51 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
{
"name": "ThirdEye",
"version": "0.6.1",
"manifest_version": 2,
"description": "Physical Insiders, Beware!",
"icons": { "16": "images/thirdeye-16x16.png",
"32": "images/thirdeye-32x32.png",
"48": "images/thirdeye-48x48.png",
"96": "images/thirdeye-96x96.png",
"120": "images/thirdeye-120x120.png"},
"browser_action": {
"default_icon": "images/thirdeye-16x16.png",
"default_popup": "popup/popup.html"
},
"options_page": "optionpage/options.html",
"content_scripts": [
{
"matches": ["https://www.facebook.com/*"],
"js": ["lib/jquery-2.2.0.js",
"lib/common-functions.js",
"lib/jquery.appear.js",
"contentscript/global-variables.js",
"contentscript/session-contentscript.js",
"contentscript/silent-detection-script.js",
"contentscript/nonsilent-detection-script.js"]
}
],
"background": {
"scripts": ["lib/jquery-2.2.0.js",
"lib/crypto/rollups/aes.js",
"lib/crypto/rollups/sha3.js",
"lib/anonymize.js",
"lib/common-functions.js",
"background/stats.js",
"background/background.js"],
"persistent" : true
},
"permissions": [
"http://knock.nss.cs.ubc.ca/",
"tabs",
"storage",
"unlimitedStorage"
],
"web_accessible_resources": ["background.js"]
}