-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (31 loc) · 842 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
35
36
37
38
{
"manifest_version": 2,
"name": "SeedBoxCo VLC Streamer",
"description": "Easily stream media from the SeedBoxCo file manager in VLC player.",
"version": "1.0",
"permissions": [
"http://*.cloud.sn/files/*"
],
"background": {
"page": "background.html"
},
"options_page": "options.html",
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [{
"matches": ["http://*.cloud.sn/files/*"],
"css": ["style.css"],
"js": ["scripts.js"]
}],
"plugins": [{
"path": "simpleGetPlugin/npsimpleGetPlugin.dll",
"public": false
},{
"path": "simpleGetPlugin/libsimpleGetPlugin.so",
"public": false
},{
"path": "simpleGetPlugin/libsimpleGetPlugin64.so",
"public": false
}]
}