Files
AIsouler-GKD_subscription/src/apps/com.example.pptv.ts
Kun Jinkao a547eea4f5 feat(人人视频): 青少年模式、开屏广告(补充规则) (#3404)
* feat 青少年模式

* feat 开屏广告(补充规则)
2023-12-24 21:10:24 +08:00

38 lines
900 B
TypeScript

import { defineAppConfig } from '../types';
export default defineAppConfig({
id: 'com.example.pptv',
name: '人人视频',
groups: [
{
key: 0,
name: '开屏广告',
quickFind: true,
matchTime: 10000,
actionMaximum: 1,
resetMatch: 'app',
rules: [
{
key: 0,
matches: '[text*="跳过"][text.length<=10]',
snapshotUrls: 'https://i.gkd.li/import/13669401',
},
{
key: 1,
matches: '[id="com.example.pptv:id/view_count_shake"]',
snapshotUrls: 'https://i.gkd.li/import/13761160',
},
],
},
{
key: 1,
name: '青少年模式',
actionMaximum: 1,
resetMatch: 'app',
quickFind: true,
rules: '@[text="我知道了"] - * > [text="未成年模式"]',
snapshotUrls: 'https://i.gkd.li/import/13761159',
},
],
});