mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
* feat(快手极速版):青少年弹窗跳过 快手极速版,青少年弹窗跳过 * Update com.kuaishou.nebula.ts * Update com.kuaishou.nebula.ts * feat(快手极速版): 规则优化 --------- Co-authored-by: lisonge <i@songe.li>
27 lines
703 B
TypeScript
27 lines
703 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.kuaishou.nebula',
|
|
name: '快手极速版',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[id="com.kuaishou.nebula:id/splash_skip_text"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12519389',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '青少年弹窗',
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: 'com.yxcorp.gifshow.HomeActivity',
|
|
rules: '[id="com.kuaishou.nebula:id/positive"][text="我知道了"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13196316',
|
|
},
|
|
],
|
|
});
|