forked from gkd-kit/subscription
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcom.tencent.qqmusic.ts
74 lines (73 loc) · 2.16 KB
/
com.tencent.qqmusic.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { defineAppConfig } from '../types';
export default defineAppConfig({
id: 'com.tencent.qqmusic',
name: 'QQ音乐',
groups: [
{
key: 0,
name: '开屏广告',
quickFind: true,
matchTime: 10000,
actionMaximum: 1,
resetMatch: 'app',
rules: [
{
matches: 'TextView[text=`跳过`][clickable=true]',
snapshotUrls: [
'https://i.gkd.li/import/12673960', // text="互动广告"
'https://i.gkd.li/import/12674023', // text="互动广告 | "
'https://i.gkd.li/import/12673998', // text="广告"
'https://i.gkd.li/import/12674074', // text="运营推广"
],
},
],
},
{
key: 1,
name: '广告卡片',
activityIds: 'com.tencent.qqmusic.activity.AppStarterActivity',
rules: [
{
key: 2,
matches: '[text="广告"] + * + [desc="关闭"]',
snapshotUrls: 'https://i.gkd.li/import/13206534',
},
{
key: 3,
matches:
'@ImageView - ImageView - RelativeLayout >n [text="听歌入会赢绿钻"||text="摇动点击广告跳转"]',
snapshotUrls: [
'https://i.gkd.li/import/13206982',
'https://i.gkd.li/import/13218134',
],
},
],
},
{
key: 2,
name: '首页-底部广告弹窗',
quickFind: true,
activityIds: 'com.tencent.qqmusic.activity.TranslucentWebViewActivity',
rules: 'View[id="js_close_btn"][desc="关闭"]',
snapshotUrls: 'https://i.gkd.li/import/13115121',
},
{
key: 3,
name: '内测体验弹窗',
desc: '点击[不再提醒]',
activityIds: 'com.tencent.qqmusic.activity.AppStarterActivity',
quickFind: true,
rules: '[text="抢先体验"] -2 [text="不再提醒"]',
snapshotUrls: 'https://i.gkd.li/import/13178485',
},
{
key: 4,
name: '免流弹窗',
desc: '点击[流量够用]',
activityIds: 'com.tencent.qqmusic.activity.AppStarterActivity',
quickFind: true,
rules: '[text="流量够用"]',
snapshotUrls: 'https://i.gkd.li/import/13197868',
},
],
});