{
	"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"
}