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
v2.1
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:
@@ -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"
|
||||
Reference in New Issue
Block a user