-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.json
35 lines (35 loc) · 841 Bytes
/
plugin.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
{
"id": "nodebb-plugin-recent-cards-timuu",
"name": "Recent Cards plugin for NodeBB's Persona Theme",
"description": "Add lavender-style cards of recent topics to Persona's category homepage",
"url": "https://github.com/timuu/nodebb-plugin-recent-cards-timuu",
"library": "./library.js",
"hooks": [
{
"hook": "static:app.load", "method": "init"
},
{
"hook": "filter:admin.header.build", "method": "addAdminNavigation"
},
{
"hook": "filter:categories.build", "method": "getCategories"
},
{
"hook": "action:nodebb.ready", "method": "onNodeBBReady"
}
],
"staticDirs": {
"static": "./static"
},
"less": [
"static/style.less"
],
"css": [
"static/bxslider/jquery.bxslider.css"
],
"scripts": [
"static/bxslider/jquery.bxslider.min.js",
"static/lib/main.js"
],
"templates": "static/templates"
}