mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
* fix(vivo 官网): 开屏广告 * feat(vivo 官网): 开屏广告 --------- Co-authored-by: lisonge <i@songe.li>
38 lines
882 B
TypeScript
38 lines
882 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.vivo.space',
|
|
name: 'vivo 官网',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches: 'TextView[text*="跳过"][text.length<=5]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13622769',
|
|
'https://i.gkd.li/import/13197585',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '活动广告',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
activityIds: 'com.vivo.space.ui.VivoSpaceTabActivity',
|
|
rules: 'Image[text=""] + [text=""][clickable=true]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13218155',
|
|
'https://i.gkd.li/import/13292907',
|
|
],
|
|
},
|
|
],
|
|
});
|