You've already forked Tricky-Addon-Update-Target-List
mirror of
https://github.com/KOWX712/Tricky-Addon-Update-Target-List.git
synced 2025-09-06 06:37:09 +00:00
Add curl binary to fetch Xposed module package name list. WebUI bug fix and new feature: exclude Xposed module, better ui experience and more user friendly.
9 lines
234 B
Bash
9 lines
234 B
Bash
#!/system/bin/sh
|
|
|
|
# Get all xposed app package name
|
|
MODPATH=${0%/*}
|
|
OUTPUT="$MODPATH/xposed-list"
|
|
|
|
curl -s "https://modules.lsposed.org/modules.json" | \
|
|
grep -o '"name":"[^"]*","description":' | \
|
|
awk -F'"' '{print $4}' > "$OUTPUT" |