-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
71 lines (70 loc) · 2.01 KB
/
manifest.json
File metadata and controls
71 lines (70 loc) · 2.01 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"manifest_version": 2,
"version": "0.1",
"name": "libdweb-experiment",
"applications": {
"gecko": {
"id": "template@libdweb"
}
},
"description":
"Template for Experimental Firefox WebExtensions using libdweb APIs.",
"permissions": [],
"experiment_apis": {
"protocol": {
"schema": "./node_modules/libdweb/src/protocol/protocol.json",
"child": {
"scopes": ["addon_child"],
"paths": [["protocol"]],
"script": "./node_modules/libdweb/src/protocol/client.js"
},
"parent": {
"events": ["startup"],
"scopes": ["addon_parent"],
"paths": [["protocol"]],
"script": "./node_modules/libdweb/src/protocol/host.js"
}
},
"ServiceDiscovery": {
"schema":
"./node_modules/libdweb/src/ServiceDiscovery/ServiceDiscovery.json",
"child": {
"scopes": ["addon_child"],
"paths": [["ServiceDiscovery"]],
"script": "./node_modules/libdweb/src/ServiceDiscovery/client.js"
},
"parent": {
"scopes": ["addon_parent"],
"paths": [["ServiceDiscovery"]],
"script": "./node_modules/libdweb/src/ServiceDiscovery/host.js"
}
},
"FileSystem": {
"schema": "./node_modules/libdweb/src/FileSystem/FileSystem.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["FileSystem"]],
"script": "./node_modules/libdweb/src/FileSystem/host.js"
}
},
"TCPSocket": {
"schema": "./node_modules/libdweb/src/TCPSocket/TCPSocket.json",
"child": {
"scopes": ["addon_child"],
"paths": [["TCPSocket"]],
"script": "./node_modules/libdweb/src/TCPSocket/Socket.js"
}
},
"UDPSocket": {
"schema": "./node_modules/libdweb/src/UDPSocket/UDPSocket.json",
"child": {
"scopes": ["addon_child"],
"paths": [["UDPSocket"]],
"script": "./node_modules/libdweb/src/UDPSocket/Socket.js"
}
}
},
"background": {
"scripts": ["./src/main.js"]
}
}