Skip to content

Commit 8bebae0

Browse files
committed
Update ida-plugin.json for hcli installation
1 parent 9f9df80 commit 8bebae0

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ An IDA Pro plugin that displays cross-references to functions or variables acros
1818

1919
## Installation
2020

21+
### Method 1: Using hcli (Recommended)
22+
23+
```
24+
hcli plugin install LazyCross
25+
```
26+
27+
### Method 2: Manual Installation
2128

2229
1. Download or clone this repository.
2330
2. Copy `LazyCross.py` into your IDA plugins directory:

ida-plugin.json

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,35 @@
33
"plugin": {
44
"name": "LazyCross",
55
"entryPoint": "LazyCross.py",
6-
"categories": ["decompilation", "api-scripting-and-automation"],
7-
"logoPath": "logo.png",
6+
"version": "1.0.0",
87
"idaVersions": ">=7.4",
98
"description": "Display cross-references to functions and variables across the entire binary in Hex-Rays pseudocode",
10-
"version": "1.0.0"
9+
"license": "GPL-3.0",
10+
"logoPath": "logo.png",
11+
"categories": [
12+
"decompilation",
13+
"api-scripting-and-automation"
14+
],
15+
"keywords": [
16+
"xref",
17+
"cross-reference",
18+
"hex-rays",
19+
"decompilation"
20+
],
21+
"urls": {
22+
"repository": "https://github.com/L4ys/LazyCross"
23+
},
24+
"authors": [
25+
{
26+
"name": "Lays",
27+
"email": "l4ys.tw@gmail.com"
28+
}
29+
],
30+
"platforms": [
31+
"windows-x86_64",
32+
"linux-x86_64",
33+
"macos-x86_64",
34+
"macos-aarch64"
35+
]
1136
}
1237
}

0 commit comments

Comments
 (0)