Files
AIsouler-GKD_subscription/src/apps/com.gamersky.ts
guanyintu 0919cd5e95 feat(游民星空): 开屏广告-规则优化 (#1238)
为游民星空添加新的匹配规则
2023-10-20 00:30:14 +08:00

24 lines
590 B
TypeScript

import { defineAppConfig } from '../types';
export default defineAppConfig({
id: 'com.gamersky',
name: '游民星空',
groups: [
{
key: 0,
name: '开屏广告',
activityIds: 'com.gamersky.main.activity.LibMainActivity',
rules: [
{
matches: 'View[clickable= true] + TextView[text ^= "跳过"]',
snapshotUrls: 'https://gkd-kit.songe.li/import/12848922',
},
{
matches: '[id="com.gamersky:id/jump"]',
snapshotUrls: 'https://gkd-kit.gitee.io/import/13038181',
},
],
},
],
});