-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.json
27 lines (27 loc) · 904 Bytes
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"pluginmetadataversion" : 2,
"name": "Explain Instruction",
"type": ["ui","helper"],
"api": ["python3"],
"description": "Displays a window that explains in simple English what an assembly instruction does",
"longdescription": "Parses the Lifted IL for an instruction and uses it to (attempt to) generate an English description of what an instruction does. See also: [README.md](https://github.com/ehennenfent/binja_explain_instruction/blob/master/README.md)",
"license": {
"name": "Apache 2",
"text": "https://github.com/ehennenfent/binja_explain_instruction/blob/master/LICENSE"
},
"platforms" : ["Darwin", "Linux", "Windows"],
"dependencies": {
"pip": [],
"apt": [],
"installers": [],
"other": []
},
"installinstructions" : {
"Darwin" : "",
"Linux" : "",
"Windows" : ""
},
"version": "0.2.1-alpha",
"author": "Eric Hennenfent",
"minimumbinaryninjaversion": 3053
}