-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.1 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
{
"manifest_version": 2,
"name": "Hack The North submission",
"description": "Supercharges facebook messenger",
"version": "1.0",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"permissions": [
"declarativeContent",
"activeTab"
],
"content_scripts": [{
"matches": [
"http://www.facebook.com/messages/*",
"https://www.facebook.com/messages/*"
],
"css": [],
"js": [
"content_scripts/jquery.min.js",
"content_scripts/main.js"
]
}, {
"matches": [
"http://www.messenger.com/*",
"https://www.messenger.com/*"
],
"css": [
"content_scripts/materialize.min.css"
],
"js": [
"content_scripts/jquery.min.js",
"content_scripts/materialize.min.js",
"content_scripts/fabric.min.js",
"content_scripts/socket.io.min.js",
"content_scripts/socket.io-stream.js",
"content_scripts/messenger.js"
]
}]
}