mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 17:25:11 +08:00
40 lines
1014 B
TypeScript
40 lines
1014 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.tipsoon.android',
|
|
name: '简讯',
|
|
groups: [
|
|
{
|
|
key: -1,
|
|
name: '开屏广告',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
quickFind: true,
|
|
action: 'clickCenter',
|
|
matches: '[text*="跳过"][text.length<10][visibleToUser=true]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/7ba2a5cd-12e8-4ac3-a867-8d0f81247d93',
|
|
snapshotUrls: 'https://i.gkd.li/i/14568317',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 0,
|
|
name: '全屏广告-弹窗广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
name: '弹窗广告-1',
|
|
activityIds: 'com.tipsoon.android.activity.MainActivity',
|
|
matches:
|
|
'[id="com.tipsoon.android:id/cardview"] + [id="com.tipsoon.android:id/img_close"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13426997',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|