JS Plugin Support

This commit is contained in:
Konloch 2021-06-26 06:47:27 -07:00
parent 2573aaa937
commit 5290692c3e
2 changed files with 39 additions and 9 deletions

7
plugins/Skeleton.js Normal file
View file

@ -0,0 +1,7 @@
function execute(classNodeList)
{
var GuiRef = Java.type("the.bytecode.club.bytecodeviewer.api.PluginConsole");
var gui = new GuiRef("Skeleton");
gui.setVisible(true);
gui.appendText("exceuted skeleton");
}