plugin: Added template plugin

This commit is contained in:
WerWolv
2022-03-31 15:55:40 +02:00
committed by GitHub
parent 545c322594
commit 661e9aac7d

15
template_plugin.js Normal file
View File

@@ -0,0 +1,15 @@
class Plugin {
constructor() { }
getName() {
return "Template Plugin";
}
getPageContent() {
return "Add your own elements here";
}
runCode() {
console.log("Template Plugin loaded");
}
}