mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-19 16:25:09 +08:00
* feat(麻雀省钱) * 添加-快照链接 * 修改-开屏广告-规则 * perf(麻雀省钱): 首页活动弹窗-增加准确性 --------- Co-authored-by: lisonge <i@songe.li>
24 lines
721 B
TypeScript
24 lines
721 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.maque.app',
|
|
name: '麻雀省钱',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
activityIds: 'com.uzmap.pkg.EntranceActivity',
|
|
rules: '[id="com.maque.app:id/ksad_splash_circle_skip_view"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12641032',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '首页活动弹窗',
|
|
activityIds: 'com.uzmap.pkg.EntranceActivity',
|
|
rules:
|
|
'ViewGroup[childCount=2] > ImageView[clickable=true] + ViewGroup[clickable=true][childCount=1] > ImageView[id=null][clickable=false]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12640100',
|
|
},
|
|
],
|
|
});
|