mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-24 02:35:25 +08:00
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.bokecc.dance',
|
|
name: '糖豆',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
desc: '点击"以后再说"',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
resetMatch: 'app',
|
|
actionMaximum: 1,
|
|
rules: [
|
|
{
|
|
matches: '[id="com.bokecc.dance:id/tv_cancel"]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/9156698c-76bb-4921-a39d-96a20c45260b',
|
|
snapshotUrls: 'https://i.gkd.li/i/14071977',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '全屏广告-视频播放前的广告',
|
|
desc: '5秒后点击关闭广告',
|
|
rules: [
|
|
{
|
|
quickFind: true,
|
|
activityIds: 'com.bokecc.dance.player.DancePlayActivity',
|
|
matches: '[text="关闭广告"][clickable=true][visibleToUser=true]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/f70ca3e3-762c-47ba-aed8-c9e8d5955b7e',
|
|
snapshotUrls: 'https://i.gkd.li/i/14318204',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '全屏广告-弹窗广告',
|
|
desc: '点击关闭',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
quickFind: true,
|
|
activityIds: 'com.bokecc.dance.activity.MainActivity',
|
|
matches: '[vid="iv_bottom"][visibleToUser=true]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/e866b196-04f3-454a-9eb3-a766fed952ba',
|
|
snapshotUrls: 'https://i.gkd.li/i/14318249',
|
|
},
|
|
{
|
|
key: 1,
|
|
quickFind: true,
|
|
activityIds: 'com.bokecc.dance.player.DancePlayActivity',
|
|
matches: '[vid="iv_cancel"][clickable=true][visibleToUser=true]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/45eb8c79-f683-4fcd-a2c4-0c9d1ff9d998',
|
|
snapshotUrls: 'https://i.gkd.li/i/14318261',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|