mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 10:15:31 +08:00
96 lines
2.4 KiB
TypeScript
96 lines
2.4 KiB
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.android.bankabc',
|
|
name: '中国农业银行',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '开屏广告',
|
|
matchRoot: true,
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
actionMaximumKey: 0,
|
|
priorityTime: 10000,
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
matches: '[id="com.android.bankabc:id/close"]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/67cfc2f8-a108-4382-976a-0da7d13764e9',
|
|
snapshotUrls: 'https://i.gkd.li/i/14179162',
|
|
},
|
|
{
|
|
key: 1,
|
|
matches: '[text*="跳过"][text.length<10][visibleToUser=true]',
|
|
exampleUrls: 'https://e.gkd.li/a5f6ec81-04f6-4678-b1d5-f2f326521945',
|
|
snapshotUrls: 'https://i.gkd.li/i/17879768',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '更新提示',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: '.MainActivity',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
matches: '[vid="upgrade_checkbox"][checked=false]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/i/14208545',
|
|
'https://i.gkd.li/i/16410094',
|
|
],
|
|
},
|
|
{
|
|
preKeys: [0],
|
|
key: 1,
|
|
matches: '[vid="negativeTextView"][visibleToUser=true]',
|
|
snapshotUrls: 'https://i.gkd.li/i/14208545',
|
|
},
|
|
{
|
|
preKeys: [0],
|
|
key: 2,
|
|
matches: '[vid="iv_negative"][visibleToUser=true]',
|
|
snapshotUrls: 'https://i.gkd.li/i/16410094',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '权限提示-定位权限',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: '.MainActivity',
|
|
matches: '[text="允许获取位置信息"] +n * > [text="取消"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/14208572',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 4,
|
|
name: '权限提示-通知权限',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: '.MainActivity',
|
|
matches: '[vid="iv_notification_reminder_dialog_close"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/14208621',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|