From 4527d9f1df08823fe7618d0bd4fd09ef4f01709e Mon Sep 17 00:00:00 2001 From: AdySnowflake <163967164+AdySnowflake@users.noreply.github.com> Date: Thu, 24 Jul 2025 12:29:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20JMComic3=20=E5=85=A8=E5=B1=8F=E5=B9=BF?= =?UTF-8?q?=E5=91=8A=20(#1060)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions[bot] Co-authored-by: AIsouler --- src/apps/com.example.app.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.example.app.ts diff --git a/src/apps/com.example.app.ts b/src/apps/com.example.app.ts new file mode 100644 index 00000000..870b8516 --- /dev/null +++ b/src/apps/com.example.app.ts @@ -0,0 +1,24 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.example.app', + name: 'JMComic3', + groups: [ + { + key: 1, + name: '全屏广告', + desc: '关闭选择线路后的全屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + activityIds: '.MainActivity', + matches: '@Button[clickable=true] - [text^="看完等待"]', + exampleUrls: 'https://e.gkd.li/df4c585e-acd7-49b5-af76-e53175ffb42c', + snapshotUrls: 'https://i.gkd.li/i/21399047', + }, + ], + }, + ], +});