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.
This commit is contained in:
KOWX712
2024-11-06 19:39:37 +08:00
parent 55406e377a
commit 8a0ab7c56d
14 changed files with 286 additions and 113 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/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"