-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.json
More file actions
35 lines (34 loc) · 838 Bytes
/
plugin.json
File metadata and controls
35 lines (34 loc) · 838 Bytes
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
{
"id": "nodebb-plugin-camo",
"name": "NodeBB Plugin Camo",
"description": "Route embedded images through a secure camo proxy",
"url": "https://github.com/panascais-incubator/nodebb-plugin-camo",
"library": "./lib/library.js",
"hooks": [{
"hook": "static:app.load",
"method": "init"
},{
"hook": "filter:admin.header.build",
"method": "addAdminNavigation"
}, {
"hook": "filter:parse.post",
"method": "parsePost",
"priority": 100
}, {
"hook": "filter:parse.raw",
"method": "parseRaw",
"priority": 100
}, {
"hook": "filter:parse.signature",
"method": "parseSignature",
"priority": 100
}, {
"hook": "filter:parse.aboutme",
"method": "parseAboutMe",
"priority": 100
}],
"templates": "./public/templates",
"staticDirs": {
"public": "public"
}
}