From 67cfe09f80d362d2029a628f56c28db5695f8b87 Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Mon, 13 Nov 2023 00:27:37 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=99=AE=E7=9B=8A=E5=9F=BA=E9=87=91):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=E3=80=81=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=20(#2028)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(简书):开屏广告、VIP弹窗 * feat(普益基金):开屏广告、版本更新 * 格式更正 * chore(actions): check_format_lint --------- Co-authored-by: github-actions[bot] --- src/apps/com.pywm.fund.ts | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/apps/com.pywm.fund.ts diff --git a/src/apps/com.pywm.fund.ts b/src/apps/com.pywm.fund.ts new file mode 100644 index 00000000..ab47f0a8 --- /dev/null +++ b/src/apps/com.pywm.fund.ts @@ -0,0 +1,34 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.pywm.fund', + name: '普益基金', + groups: [ + { + key: 0, + name: '开屏广告', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: '[id="com.pywm.fund:id/tv_countdown"]', + snapshotUrls: 'https://i.gkd.li/import/13327274', + }, + { + key: 1, + name: '版本更新', + matchLauncher: true, + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + matches: 'TextView[text="立即更新"]', + action: 'back', + snapshotUrls: 'https://i.gkd.li/import/13327271', + }, + ], + }, + ], +});