-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
55 lines (48 loc) · 1.14 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
{
"manifest_version": 2,
"name": "MediaRecorder",
"description": "MediaRecorder extension description",
"version": "0.2",
// "app": {
// "background": {
// "scripts": [
// "data/app/background.js"
// ]
// }
// },
"web_accessible_resources": [
"bower_components/recorderjs/recorderWorker.js",
"nacl/manifest.nmf",
"nacl/ffmpeg.x86-64.nexe",
"nacl/ffmpeg.x86-32.nexe"
],
"externally_connectable": {
"matches": ["*://localhost:*/*"]
},
"permissions" : [
"tabs",
"activeTab",
"desktopCapture",
"unlimitedStorage"
],
"content_security_policy": "default-src 'self'",
// "content_scripts": [{
// "matches": ["http://localhost:*/*"],
// "js": [
// "bower_components/chrome-api/patch-worker/patch-worker.js",
// "bower_components/recorderjs/recorder.js",
// "js/contentScript.js"
// ],
// "all_frames": false
// }],
// runs in the background
"background": {
"scripts": [
"bower_components/chrome-api/patch-worker/patch-worker.js",
"bower_components/recorderjs/recorder.js",
"new/background.js"
]
// "scripts": ["js/recorder.js", "js/background.js"]
// "page": "data/background.html"
}
}