-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
42 lines (39 loc) · 853 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
39
40
41
42
{
"manifest_version": 2,
"name": "OverbiteNX",
"version": "0.2",
"description": "Enables the Gopher protocol in Firefox.",
"author": "The Overbite Project",
"homepage_url" : "https://gopher.floodgap.com/overbite/",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "59.0"
}
},
"permissions": [
"bookmarks",
"downloads",
"history",
"nativeMessaging",
"tabs"
],
"background": {
"scripts": [
"topaz.js",
"agate.js"
]
},
"page_action": {
"browser_style" : true,
"default_icon" : "r/stop.svg",
"default_title" : "Stop Gopher transfer"
},
"protocol_handlers": [
{
"name" : "OverbiteNX",
"protocol" : "gopher",
"uriTemplate" : "d?%s"
}
]
}