mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
* feat: 新增摩托范弹窗规则 * feat(摩托范): 弹窗广告-添加示例 * feat(易捷加油): app内弹窗广告 * feat(cellular_z): 开屏广告 --------- Co-authored-by: shanlan <hi@gobyte.cn> Co-authored-by: lisonge <i@songe.li>
35 lines
917 B
TypeScript
35 lines
917 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'make.more.r2d2.cellular_z',
|
|
name: 'Cellular-Z',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '开屏广告',
|
|
activityIds: 'make.more.r2d2.cellular_z.activity.SplashGMActivity',
|
|
rules: [
|
|
{
|
|
matches: '[text^="跳过"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12648511',
|
|
},
|
|
{
|
|
matches: '[id="com.byted.pangle:id/tt_splash_skip_btn"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12747314',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '开屏广告-跳过按钮',
|
|
activityIds: 'make.more.r2d2.cellular_z.activity.SplashGMActivity',
|
|
rules: [
|
|
{
|
|
matches: '[id="com.byted.pangle:id/tt_splash_skip_btn"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12747314',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|