-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.android.browser.ts
More file actions
51 lines (50 loc) · 1.09 KB
/
com.android.browser.ts
File metadata and controls
51 lines (50 loc) · 1.09 KB
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
import { defineGkdApp } from '@gkd-kit/define';
export default defineGkdApp({
id: 'com.android.browser',
name: '浏览器',
groups: [
{
key: 0,
name: '瑞羚签到',
enable: false,
rules: [
{
matches: '[text="立即签到"][visibleToUser=true]',
},
],
},
{
key: 1,
name: '瑞羚签到2',
enable: false,
rules: [
{
matches:
'[text*="立即签到"][name="android.widget.TextView"][visibleToUser=true]',
},
],
},
{
key: 2,
name: '进入直播',
rules: [
{
activityIds: ['com.android.browser.BrowserActivity'],
matches:
'[text="进入直播"][name="android.widget.TextView"][visibleToUser=true]',
},
],
},
{
key: 3,
name: '瑞羚签到3',
rules: [
{
activityIds: ['com.android.browser.BrowserActivity'],
matches:
'[text$="立即签到"][name="android.widget.TextView"][visibleToUser=true]',
},
],
},
],
});