nodebb-plugin-rainbows
Version:
Add colors and gradients to your posts, tags, and more. Smile!
29 lines (28 loc) • 1.26 kB
JSON
{
"id": "nodebb-plugin-rainbows",
"name": "NodeBB Rainbows",
"description": "Add colors and gradients to your posts, tags, and more. Smile!",
"url": "https://github.com/yariplus/nodebb-plugin-rainbows",
"less": [
"public/less/style.less"
],
"library": "./library.js",
"hooks": [
{ "hook": "static:app.load", "method": "onLoad" },
{ "hook": "filter:parse.raw", "method": "parseRaw", "priority": 100 },
{ "hook": "filter:parse.post", "method": "parsePost", "priority": 100 },
{ "hook": "filter:parse.signature", "method": "parseSignature", "priority": 100 },
{ "hook": "filter:topic.get", "method": "getTopic" },
{ "hook": "filter:category.build", "method": "parseController" },
{ "hook": "filter:recent.build", "method": "parseController" },
{ "hook": "filter:popular.build", "method": "parseController" },
{ "hook": "filter:unread.build", "method": "parseController" },
{ "hook": "filter:admin.header.build", "method": "adminHeader" },
{ "hook": "filter:config.get", "method": "configGet" },
{ "hook": "filter:middleware.renderHeader", "method": "renderHeader" }
],
"scripts": [
"public/js/client.js"
],
"templates": "./public/templates"
}