mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-17 15:25:08 +08:00
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.kuaishou.nebula',
|
|
name: '快手极速版',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '青少年模式',
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[id="com.kuaishou.nebula:id/positive"][text="我知道了"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13196316',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '全屏广告-朋友推荐弹窗',
|
|
activityIds: 'com.yxcorp.gifshow.HomeActivity',
|
|
quickFind: true,
|
|
rules: '@[vid="close_btn"] + [text="朋友推荐"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/14310639',
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '全屏广告-红包弹窗',
|
|
rules: [
|
|
{
|
|
key: 1,
|
|
quickFind: true,
|
|
activityIds: 'com.yxcorp.gifshow.HomeActivity',
|
|
matches: '@ImageView[clickable=true] -2 [text$="免费红包"]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/101449500/f7bbd1db-f519-4ff9-96cb-4cb5b2f483a2',
|
|
snapshotUrls: 'https://i.gkd.li/i/14879912',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|