“Thanox Profile”的版本间差异

来自Silica Library | 間奏時光
跳到导航 跳到搜索
第76行: 第76行:


== ARN 消除模块 (Xposed) ([https://www.myflv.cn/course/271.html 第三方来源]) ==
== ARN 消除模块 (Xposed) ([https://www.myflv.cn/course/271.html 第三方来源]) ==
   [https://silica.im/downloads/NoANR_1.0_sign.apk 下载]
   [https://github.com/myflavor/NoANR/releases 通过 GitHub 下载]

2022年5月11日 (三) 06:51的版本

Thanox Pro 情景模式

开机自启动

  变量名:ForegroundBackground
  一般情况下请使用 BackgroundForeground 主要用在一些仅启动进程不足以正常运行的 APP,如 小米健康运动 (只开进程手表无法收到任何通知)。

[{
 "name": "System Boot Ready Running",
 "description": "Global Variant: Foreground, Background",
 "priority": 1,
 "condition": "systemReady == true",
 "actions": 
 [
  "foreach (el : globalVarOf$Background) {activity.launchProcessForPackage(el);}",
  "foreach (el : globalVarOf$Foreground) {activity.launchMainActivityForPackage(el);}"
 ]
}]

进程守护 (启动应用进程)

  变量名:Background

[{
 "name": "Keep Background Running",
 "description": "Global Variant: Background",
 "priority": 1,
 "condition": "pkgKilled == true && globalVarOf$Background.contains(pkgName)",
 "actions": ["activity.launchProcessForPackage(pkgName)"]
}]

进程守护 (打开应用主界面)

  变量名:Foreground
  主要用在一些仅启动进程不足以正常运行的 APP,如 小米健康运动 (只开进程手表无法收到任何通知)。

[{
 "name": "Keep Foreground Running",
 "description": "Global Variant: Foreground",
 "priority": 1,
 "condition": "pkgKilled == true && globalVarOf$Foreground.contains(pkgName)",
 "actions": ["activity.launchMainActivityForPackage(pkgName)"]
}]

后台墓碑

  变量名:Standby

[{
 "name": "Auto Standby",
 "description": "Global Variant: Standby",
 "priority": 2,
 "condition": "frontPkgChanged == true && globalVarOf$Standby.contains(from)",
 "actions": [
   "activity.setInactive(from);",
   "su.exe(\"am set-standby-bucket \" +from +\" restricted\");",
   "su.exe(\"name=$(pgrep -f \" +from +\")\");","su.exe(\"kill -19 $name\");"
  ]
}]

解除后台墓碑

  变量名:Standby

[{
 "name": "Auto Cancel Standby",
 "description": "Global Variant: Standby",
 "priority": 1,
 "condition": "frontPkgChanged == true && globalVarOf$Standby.contains(to)",
 "actions": [
  "su.exe(\"name=$(pgrep -f \" +to +\")\");","su.exe(\"kill -18 $name\");",
  "su.exe(\"am set-standby-bucket \" +to +\" rare\");"
 ]
}]

ARN 消除模块 (Xposed) (第三方来源)

  通过 GitHub 下载