UNPKG

nodebb-plugin-spam-be-gone-fix

Version:

support both Google Recaptcha, Akismet.com, StopForumSpam.com & ProjectHoneyPot.com in Nodebb V3.x

43 lines (42 loc) 1.84 kB
{ "id": "nodebb-plugin-spam-be-gone-fix", "name": "Spam Be Gone fix", "description": "Support both Google Recaptcha, Akismet.com, StopForumSpam.com & ProjectHoneyPot.com in Nodebb V3.x(中文修复)", "url": "https://github.com/LingkongSky/nodebb-plugin-spam-be-gone-fix", "scss": [ "public/scss/styles.scss" ], "acpScripts": [ "public/js/scripts.js" ], "scripts": [ "public/js/scripts.js" ], "modules": { "../admin/plugins/spam-be-gone-fix.js": "public/js/admin.js", "spam-be-gone-fix/hcaptcha.js": "public/js/hcaptcha.js" }, "templates": "public/templates", "languages": "public/languages", "defaultLang": "en_GB", "upgrades": [ "upgrades/enable_stopforumspam_by_default.js" ], "hooks": [ {"hook": "static:app.load", "method": "load"}, {"hook": "filter:admin.header.build", "method": "admin.menu"}, {"hook": "filter:login.build", "method": "addCaptcha", "priority": 5}, {"hook": "filter:register.build", "method": "addCaptcha", "priority": 5}, {"hook": "filter:login.check", "method": "checkLogin", "priority": 5}, {"hook": "filter:register.check", "method": "checkRegister", "priority": 5}, {"hook": "filter:user.profileMenu", "method": "userProfileMenu", "priority": 5}, {"hook": "filter:user.getRegistrationQueue", "method": "getRegistrationQueue", "priority": 5}, {"hook": "filter:topic.post", "method": "onTopicPost", "priority": 5}, {"hook": "filter:topic.reply", "method": "onTopicReply", "priority": 5}, {"hook": "filter:topic.edit", "method": "onTopicEdit"}, {"hook": "filter:post.edit", "method": "onPostEdit"}, {"hook": "action:flags.create", "method": "onPostFlagged", "priority": 5}, {"hook": "filter:config.get", "method": "appendConfig"} ], "faIcon": "fa-shield" }