Example JS Plugin Print Classes

This commit is contained in:
Konloch 2021-06-27 15:21:46 -07:00
parent d12eca6973
commit 33447e3f09
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/**
* This is an example plugin
*/
var PluginConsole = Java.type("the.bytecode.club.bytecodeviewer.api.PluginConsole");
var gui = new PluginConsole("Example Plugin Print Loaded Classes");
function execute(classNodeList)
{
for (index = 0; index < classNodeList.length; index++)
{
var cn = classNodeList[index];
gui.appendText("Resource: " + cn.name + ".class");
}
gui.setVisible(true);
}