From 4f72cc8cf90dc98c0764ea96450c5511231356a1 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Sat, 28 Oct 2023 23:04:38 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=A8=80=E9=A5=AD=E5=8A=A8=E6=BC=AB):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#1462)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat 开屏广告 * feat 广告弹窗 --- src/apps/com.xfani.app.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/apps/com.xfani.app.ts diff --git a/src/apps/com.xfani.app.ts b/src/apps/com.xfani.app.ts new file mode 100644 index 00000000..50daafed --- /dev/null +++ b/src/apps/com.xfani.app.ts @@ -0,0 +1,23 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.xfani.app', + name: '稀饭动漫', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.xfani.app.MainActivity', + matchLauncher: true, + rules: 'TextView[text^="跳过"]', + snapshotUrls: 'https://i.gkd.li/import/13188526', + }, + { + key: 1, + name: '广告弹窗', + activityIds: 'com.xfani.app.MainActivity', + rules: 'ImageView - LinearLayout - FrameLayout > FrameLayout > ImageView', + snapshotUrls: 'https://i.gkd.li/import/13188550', + }, + ], +});