UNPKG

nodebb-plugin-link-preview

Version:

A starter kit for quickly creating NodeBB plugins

22 lines 791 B
{ "id": "nodebb-plugin-link-preview", "url": "https://github.com/NodeBB/nodebb-plugin-link-preview", "library": "./library.js", "hooks": [ { "hook": "static:app.load", "method": "init" }, { "hook": "filter:admin.header.build", "method": "addAdminNavigation" }, { "hook": "filter:settings.get", "method": "applyDefaults" }, { "hook": "filter:parse.post", "method": "onParse" }, { "hook": "filter:parse.raw", "method": "onParse" }, { "hook": "action:post.save", "method": "onPost" }, { "hook": "action:post.edit", "method": "onPost" }, { "hook": "filter:admin.cache.get", "method": "filterAdminCacheGet" } ], "scss": [ "static/scss/link-preview.scss" ], "modules": { "../admin/plugins/link-preview.js": "./static/lib/admin.js" }, "templates": "static/templates" }