blob: 9eb63118d63a7cb562640794ecb70670336caf9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class Plugin {
constructor() { }
getName() {
return "Template Plugin";
}
getPageContent() {
return "Add your own elements here";
}
runCode() {
console.log("Template Plugin loaded");
}
}
|