device_detector 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -1
- data/README.md +19 -5
- data/lib/device_detector/browser.rb +141 -7
- data/lib/device_detector/client_hint.rb +100 -32
- data/lib/device_detector/device.rb +188 -1
- data/lib/device_detector/os.rb +109 -7
- data/lib/device_detector/parser.rb +6 -5
- data/lib/device_detector/version.rb +1 -1
- data/lib/device_detector.rb +56 -23
- data/regexes/bots.yml +1242 -213
- data/regexes/client/browser_engine.yml +11 -2
- data/regexes/client/browsers.yml +543 -102
- data/regexes/client/feed_readers.yml +1 -1
- data/regexes/client/hints/apps.yml +29 -3
- data/regexes/client/hints/browsers.yml +87 -5
- data/regexes/client/libraries.yml +107 -1
- data/regexes/client/mediaplayers.yml +15 -1
- data/regexes/client/mobile_apps.yml +413 -117
- data/regexes/client/pim.yml +36 -2
- data/regexes/device/car_browsers.yml +16 -0
- data/regexes/device/consoles.yml +18 -5
- data/regexes/device/mobiles.yml +4180 -1210
- data/regexes/device/notebooks.yml +14 -1
- data/regexes/device/portable_media_player.yml +7 -1
- data/regexes/device/shell_tv.yml +12 -0
- data/regexes/device/televisions.yml +409 -47
- data/regexes/oss.yml +661 -238
- metadata +3 -3
@@ -5,6 +5,31 @@
|
|
5
5
|
# @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later
|
6
6
|
###############
|
7
7
|
|
8
|
+
# Report Runner (https://reportrunner.com/)
|
9
|
+
- regex: 'Report Runner'
|
10
|
+
name: 'Report Runner'
|
11
|
+
version: ''
|
12
|
+
|
13
|
+
# Ameba (https://ameblo.jp/ | https://play.google.com/store/apps/details?id=jp.ameba)
|
14
|
+
- regex: 'jpameblo;(\d+\.[\.\d]+)'
|
15
|
+
name: 'Ameba'
|
16
|
+
version: '$1'
|
17
|
+
|
18
|
+
# CSDN (https://apps.apple.com/us/app/csdn-%E6%8A%80%E6%9C%AF%E5%BC%80%E5%8F%91%E8%80%85%E7%A4%BE%E5%8C%BA/id1437086352)
|
19
|
+
- regex: 'CSDNApp/(\d+\.[\.\d]+)'
|
20
|
+
name: 'CSDN'
|
21
|
+
version: '$1'
|
22
|
+
|
23
|
+
# Moya (https://play.google.com/store/apps/details?id=nu.bi.moya | https://apps.apple.com/za/app/moya-app-datafree/id1623208355)
|
24
|
+
- regex: 'binu(?:/(\d+[\.\d]+))?'
|
25
|
+
name: 'Moya'
|
26
|
+
version: ''
|
27
|
+
|
28
|
+
# KPN Veilig (https://play.google.com/store/apps/details?id=com.fsecure.ms.kpn.veilig | https://apps.apple.com/nl/app/kpn-veilig-browser/id983576415)
|
29
|
+
- regex: 'KPN_Veilig[ /](\d+\.[\.\d]+)'
|
30
|
+
name: 'KPN Veilig'
|
31
|
+
version: '$1'
|
32
|
+
|
8
33
|
# Naver (https://apps.apple.com/app/id393499958)
|
9
34
|
- regex: 'NAVER/(\d+[\.\d]+) CFNetwork'
|
10
35
|
name: 'Naver'
|
@@ -18,6 +43,11 @@
|
|
18
43
|
name: 'Naver'
|
19
44
|
version: '$1'
|
20
45
|
|
46
|
+
# NAVER Dictionary (https://apps.apple.com/us/app/naver-dictionary/id673085116)
|
47
|
+
- regex: 'NAVER\(inapp; naverdicapp; .+; (\d+[\.\d]+)\)'
|
48
|
+
name: 'NAVER Dictionary'
|
49
|
+
version: '$1'
|
50
|
+
|
21
51
|
# Soldier
|
22
52
|
- regex: 'Chrome/Soldier_([\d\.]+)'
|
23
53
|
name: 'Soldier'
|
@@ -34,7 +64,7 @@
|
|
34
64
|
version: '$1'
|
35
65
|
|
36
66
|
# Apple TV
|
37
|
-
- regex: 'appletv
|
67
|
+
- regex: 'appletv\.client'
|
38
68
|
name: 'Apple TV'
|
39
69
|
version: ''
|
40
70
|
|
@@ -43,18 +73,18 @@
|
|
43
73
|
name: 'Facebook Audience Network'
|
44
74
|
version: '$1'
|
45
75
|
|
46
|
-
# Facebook Messenger (https://play.google.com/store/apps/details?id=com.facebook.orca)
|
47
|
-
- regex: '(?:MessengerForiOS|MESSENGER|FB_IAB/Orca-Android).(?:FBAV)(?:[ /]([\d\.]+))?'
|
48
|
-
name: 'Facebook Messenger'
|
49
|
-
version: '$1'
|
50
|
-
|
51
76
|
# Facebook Messenger Lite
|
52
|
-
- regex: '(?:mLite|MessengerLite(?:ForiOS)?)
|
77
|
+
- regex: '(?:mLite|MessengerLite(?:ForiOS)?).*(?:FBAV)(?:[ /]([\d\.]+))?'
|
53
78
|
name: 'Facebook Messenger Lite'
|
54
79
|
version: '$1'
|
55
80
|
|
81
|
+
# Facebook Messenger (https://play.google.com/store/apps/details?id=com.facebook.orca)
|
82
|
+
- regex: '(?:MessengerForiOS|MESSENGER|FB_IAB/Orca-Android).*(?:FBAV)(?:[ /]([\d\.]+))?'
|
83
|
+
name: 'Facebook Messenger'
|
84
|
+
version: '$1'
|
85
|
+
|
56
86
|
# Facebook Groups
|
57
|
-
- regex: '(?:GroupsForiOS)
|
87
|
+
- regex: '(?:GroupsForiOS).*(?:FBAV)(?:[ /]([\d\.]+))?'
|
58
88
|
name: 'Facebook Groups'
|
59
89
|
version: '$1'
|
60
90
|
|
@@ -69,43 +99,58 @@
|
|
69
99
|
version: '$1'
|
70
100
|
|
71
101
|
# Facebook
|
72
|
-
- regex: '(?:FBAV|com
|
102
|
+
- regex: '(?:FBAV|com\.facebook\.katana|facebook-mobile/1\.0|facebook-mobile/|Facebook/)(?:[ /]([\d\.]+))?'
|
73
103
|
name: 'Facebook'
|
74
104
|
version: '$1'
|
75
105
|
- regex: '(?:FBAN|FBSV|FBID|FBBV)/'
|
76
106
|
name: 'Facebook'
|
77
107
|
version: ''
|
78
108
|
|
109
|
+
# Instagram
|
110
|
+
- regex: 'Instagram[ /]([\d\.]+)?'
|
111
|
+
name: 'Instagram'
|
112
|
+
version: '$1'
|
113
|
+
|
114
|
+
# Threads
|
115
|
+
- regex: 'Barcelona[ /]([\d\.]+)?'
|
116
|
+
name: 'Threads'
|
117
|
+
version: '$1'
|
118
|
+
|
79
119
|
# FeedR
|
80
|
-
- regex: 'FeedR(?:/([\d\.]+))?'
|
120
|
+
- regex: 'FeedR(?!eader)(?:/([\d\.]+))?'
|
81
121
|
name: 'FeedR'
|
82
122
|
version: '$1'
|
83
123
|
|
84
124
|
# Google Go
|
85
|
-
- regex: 'com
|
125
|
+
- regex: 'com\.google\.android\.apps\.searchlite'
|
86
126
|
name: 'Google Go'
|
87
127
|
version: ''
|
88
128
|
|
89
129
|
# Google Photos
|
90
|
-
- regex: 'com
|
130
|
+
- regex: 'com\.google\.android\.apps\.photos'
|
91
131
|
name: 'Google Photos'
|
92
132
|
version: ''
|
93
133
|
|
94
134
|
# Google Play Kiosk
|
95
|
-
- regex: 'com
|
135
|
+
- regex: 'com\.google\.android\.apps\.magazines'
|
96
136
|
name: 'Google Play Newsstand'
|
97
137
|
version: ''
|
98
138
|
|
99
139
|
# Google Plus
|
100
|
-
- regex: 'com
|
140
|
+
- regex: 'com\.google\.GooglePlus'
|
101
141
|
name: 'Google Plus'
|
102
142
|
version: ''
|
103
143
|
|
104
144
|
# Google Drive (https://apps.apple.com/us/app/google-drive/id507874739)
|
105
|
-
- regex: 'Google
|
145
|
+
- regex: 'Google\.DriveExtension(?:/([\d\.]+))?'
|
106
146
|
name: 'Google Drive'
|
107
147
|
version: '$1'
|
108
148
|
|
149
|
+
# Google Assistant (https://assistant.google.com/)
|
150
|
+
- regex: 'OPA/([\d\.]+)'
|
151
|
+
name: 'Google Assistant'
|
152
|
+
version: '$1'
|
153
|
+
|
109
154
|
# WeChat
|
110
155
|
- regex: 'MicroMessenger/([\d\.]+)'
|
111
156
|
name: 'WeChat'
|
@@ -138,7 +183,7 @@
|
|
138
183
|
version: ''
|
139
184
|
|
140
185
|
# YouTube
|
141
|
-
- regex: 'com
|
186
|
+
- regex: 'com\.google\.android\.youtube(?:/([\d\.]+))?'
|
142
187
|
name: 'YouTube'
|
143
188
|
version: '$1'
|
144
189
|
|
@@ -148,7 +193,7 @@
|
|
148
193
|
version: '$1'
|
149
194
|
|
150
195
|
# Netflix (https://play.google.com/store/apps/details?id=com.netflix.mediaclient)
|
151
|
-
- regex: 'com
|
196
|
+
- regex: 'com\.netflix\.mediaclient(?:/(\d+\.[\d\.]+))?'
|
152
197
|
name: 'Netflix'
|
153
198
|
version: '$1'
|
154
199
|
|
@@ -161,21 +206,55 @@
|
|
161
206
|
- regex: 'Flipp-iOS/.+CFNetwork'
|
162
207
|
name: 'Flipp'
|
163
208
|
version: ''
|
164
|
-
|
165
209
|
- regex: 'Flipp-iOS/(\d+[\.\d]+)'
|
166
210
|
name: 'Flipp'
|
167
211
|
version: '$1'
|
168
212
|
|
169
|
-
#
|
170
|
-
- regex: '(
|
171
|
-
name: '
|
172
|
-
version: '
|
213
|
+
# Signal uses WhatsApp user agent
|
214
|
+
- regex: 'WhatsApp(?:/2)?$'
|
215
|
+
name: 'Signal'
|
216
|
+
version: ''
|
217
|
+
|
218
|
+
# WhatsApp Business
|
219
|
+
- regex: 'WhatsApp/([\d\.]+).+CloudAPI'
|
220
|
+
name: 'WhatsApp Business'
|
221
|
+
version: '$1'
|
173
222
|
|
174
223
|
# WhatsApp
|
175
|
-
- regex: 'WhatsApp(?:[ /]([\d\.]+))?'
|
224
|
+
- regex: 'WhatsApp(?:Electron|\-app|\-linux-app)?(?:[ /]([\d\.]+))?'
|
176
225
|
name: 'WhatsApp'
|
177
226
|
version: '$1'
|
178
227
|
|
228
|
+
# WhatsApp+2
|
229
|
+
- regex: 'YoWhatsApp2Plus(?:/(\d+[\.\d]+))?'
|
230
|
+
name: 'WhatsApp+2'
|
231
|
+
version: '$1'
|
232
|
+
|
233
|
+
# FM WhatsApp
|
234
|
+
- regex: 'YoFMWhatsApp(?:/(\d+[\.\d]+))?'
|
235
|
+
name: 'FM WhatsApp'
|
236
|
+
version: '$1'
|
237
|
+
|
238
|
+
# GBWhatsApp
|
239
|
+
- regex: '(?:Yo)?GBWhatsApp(?:/(\d+[\.\d]+))?'
|
240
|
+
name: 'GBWhatsApp'
|
241
|
+
version: '$1'
|
242
|
+
|
243
|
+
# Yo WhatsApp
|
244
|
+
- regex: 'YoYoWhatsApp(?:/(\d+[\.\d]+))?'
|
245
|
+
name: 'Yo WhatsApp'
|
246
|
+
version: '$1'
|
247
|
+
|
248
|
+
# AN WhatsApp (https://anwhats.com/)
|
249
|
+
- regex: 'ANWhatsApp(?:/(\d+[\.\d]+))?'
|
250
|
+
name: 'AN WhatsApp'
|
251
|
+
version: '$1'
|
252
|
+
|
253
|
+
# https://music.youtube.com
|
254
|
+
- regex: '(?:^com\.google\.android\.apps\.youtube\.music/|^YouTubeMusic(?:Dev)?/)([\d\.]+)?'
|
255
|
+
name: 'Youtube Music'
|
256
|
+
version: '$1'
|
257
|
+
|
179
258
|
# Line
|
180
259
|
- regex: 'Line(?:[ /]([\d\.]+))'
|
181
260
|
name: 'Line'
|
@@ -198,7 +277,7 @@
|
|
198
277
|
- regex: '(?:^Overcast/([\d\.]+)|^Overcast.*Apple Watch)'
|
199
278
|
name: 'Overcast'
|
200
279
|
version: '$1'
|
201
|
-
- regex: '(?:CastBox|fm
|
280
|
+
- regex: '(?:CastBox|fm\.castbox\.audiobook\.radio\.podcast)/?([\d\.]+)?'
|
202
281
|
name: 'CastBox'
|
203
282
|
version: '$1'
|
204
283
|
- regex: 'Podkicker( (?:Pro|Classic))?/([\d\.]+)'
|
@@ -232,9 +311,12 @@
|
|
232
311
|
- regex: 'YelpApp/([\d\.]+)'
|
233
312
|
name: 'Yelp Mobile'
|
234
313
|
version: '$1'
|
235
|
-
|
314
|
+
|
315
|
+
# Yahoo! Japan (https://play.google.com/store/apps/details?id=jp.co.yahoo.android.yjtop | https://apps.apple.com/jp/app/yahoo-japan/id299147843)
|
316
|
+
- regex: 'jp\.co\.yahoo\.(?:android\.yjtop|ipn\.appli)/([\d\.]+)'
|
236
317
|
name: 'Yahoo! Japan'
|
237
318
|
version: '$1'
|
319
|
+
|
238
320
|
- regex: 'RSSRadio/([\d]+)?'
|
239
321
|
name: 'RSSRadio'
|
240
322
|
version: '$1'
|
@@ -250,18 +332,21 @@
|
|
250
332
|
- regex: 'com\.douban\.group/([\d\.]+)?'
|
251
333
|
name: 'douban App'
|
252
334
|
version: '$1'
|
253
|
-
- regex: '
|
254
|
-
name: '
|
335
|
+
- regex: '(?:com\.google\.GoogleMobile|GSA|GoogleApp)/([\d.]+)?'
|
336
|
+
name: 'Google Search App'
|
255
337
|
version: '$1'
|
256
|
-
- regex: '
|
338
|
+
- regex: 'Google/(\d+[\.\d]+)? CFNetwork'
|
257
339
|
name: 'Google Search App'
|
258
340
|
version: '$1'
|
341
|
+
|
342
|
+
# Google Lens (https://play.google.com/store/apps/details?id=com.google.ar.lens | https://apps.apple.com/us/app/google/id284815942)
|
343
|
+
- regex: '(?:Google|SearchWith)Lens/(\d+[\.\d]+)?'
|
344
|
+
name: 'Google Lens'
|
345
|
+
version: '$1'
|
346
|
+
|
259
347
|
- regex: 'Flipboard/([\d\.]+)?'
|
260
348
|
name: 'Flipboard App'
|
261
349
|
version: '$1'
|
262
|
-
- regex: 'Instagram[ /]([\d\.]+)?'
|
263
|
-
name: 'Instagram App'
|
264
|
-
version: '$1'
|
265
350
|
- regex: 'baiduboxapp/([\d\.]+)?'
|
266
351
|
name: 'Baidu Box App'
|
267
352
|
version: '$1'
|
@@ -269,7 +354,7 @@
|
|
269
354
|
name: 'Baidu Input'
|
270
355
|
version: '$1'
|
271
356
|
- regex: 'PetalSearch/([\d\.]+)?'
|
272
|
-
name: 'Petal Search
|
357
|
+
name: 'Petal Search'
|
273
358
|
version: '$1'
|
274
359
|
- regex: 'Crosswalk(?!.*(?:Streamy|QwantMobile))/([\d\.]+)?'
|
275
360
|
name: 'CrosswalkApp'
|
@@ -283,16 +368,17 @@
|
|
283
368
|
- regex: 'TwitterAndroid[/]?([\d\.]+)?'
|
284
369
|
name: 'Twitter'
|
285
370
|
version: '$1'
|
371
|
+
|
286
372
|
# Pocket Casts (https://pocketcasts.com)
|
287
373
|
- regex: '^Pocket Casts'
|
288
374
|
name: 'Pocket Casts'
|
289
375
|
version: ''
|
376
|
+
|
290
377
|
# Podcast app from India (https://gaana.com)
|
291
378
|
- regex: '(?:^GaanaAndroid-|^Gaana-iOS|^Gaana/)([\d\.]+)?'
|
292
379
|
name: 'Gaana'
|
293
380
|
version: '$1'
|
294
381
|
|
295
|
-
|
296
382
|
- regex: 'TopBuzz/([\d\.]+)'
|
297
383
|
name: 'TopBuzz'
|
298
384
|
version: '$1'
|
@@ -347,7 +433,7 @@
|
|
347
433
|
name: 'Siri'
|
348
434
|
version: '1.0'
|
349
435
|
|
350
|
-
- regex: 'LinkedIn(?:App)?(
|
436
|
+
- regex: 'LinkedIn(?:App)?(?:\]?/([\d\.]+))?'
|
351
437
|
name: 'LinkedIn'
|
352
438
|
version: '$1'
|
353
439
|
|
@@ -430,6 +516,9 @@
|
|
430
516
|
- regex: 'Microsoft Lync ([\d\.]+)'
|
431
517
|
name: 'Microsoft Lync'
|
432
518
|
version: '$1'
|
519
|
+
- regex: 'Microsoft\.Data\.Mashup'
|
520
|
+
name: 'Microsoft Power Query' # It can be Excel or Power BI
|
521
|
+
version: ''
|
433
522
|
|
434
523
|
# https://play.google.com/store/apps/details?id=cn.wps.moffice_eng
|
435
524
|
- regex: 'WpsM?office/([\d\.]+)'
|
@@ -469,7 +558,7 @@
|
|
469
558
|
version: '$1'
|
470
559
|
|
471
560
|
# TikTok (https://apps.apple.com/app/id835599320 | https://play.google.com/store/apps/details?id=com.zhiliaoapp.musically)
|
472
|
-
- regex: '(?:TikTok[/ ]|musical_ly_|AppName/musical_ly app_version/)(\d+\.(?:[\.\d]+))?'
|
561
|
+
- regex: '(?:TikTok[/ ]|com\.zhiliaoapp\.musically|musical_ly_|AppName/musical_ly app_version/)(\d+\.(?:[\.\d]+))?'
|
473
562
|
name: 'TikTok'
|
474
563
|
version: '$1'
|
475
564
|
|
@@ -497,7 +586,7 @@
|
|
497
586
|
- regex: 'Slack/(\d+[\.\d]+) CFNetwork'
|
498
587
|
name: 'Slack'
|
499
588
|
version: ''
|
500
|
-
- regex: 'com
|
589
|
+
- regex: 'com\.tinyspeck\.chatlyio/(\d+[\.\d]+)'
|
501
590
|
name: 'Slack'
|
502
591
|
version: '$1'
|
503
592
|
|
@@ -552,7 +641,7 @@
|
|
552
641
|
version: '$1'
|
553
642
|
|
554
643
|
# https://apps.apple.com/us/app/zalo/id579523206
|
555
|
-
- regex: 'Zalo/([\d\.]+)|Zalo android'
|
644
|
+
- regex: 'Zalo/([\d\.]+)|Zalo (?:android|iOS)'
|
556
645
|
name: 'Zalo'
|
557
646
|
version: '$1'
|
558
647
|
|
@@ -561,6 +650,11 @@
|
|
561
650
|
name: 'Yandex'
|
562
651
|
version: ''
|
563
652
|
|
653
|
+
# Zen (Дзен) (https://play.google.com/store/apps/details?id=ru.zen.android)
|
654
|
+
- regex: 'ZenKit/([\d\.]+)'
|
655
|
+
name: 'Zen'
|
656
|
+
version: '$1'
|
657
|
+
|
564
658
|
- regex: 'Zoho%20Chat/([\d\.]+)'
|
565
659
|
name: 'Zoho Chat'
|
566
660
|
version: '$1'
|
@@ -580,10 +674,6 @@
|
|
580
674
|
name: 'Podbean'
|
581
675
|
version: '$1'
|
582
676
|
|
583
|
-
- regex: '(?:AlexaMediaPlayer/|^AlexaMediaPlayer/|^Echo/|^AlexaService/|^Alexa Mobile Voice/)([a-z\d]+\.[a-z.\d]+)?'
|
584
|
-
name: 'Alexa Media Player'
|
585
|
-
version: '$1'
|
586
|
-
|
587
677
|
- regex: 'TuneIn Radio Pro(?:[^/]*)/(\d+[\.\d]+)'
|
588
678
|
name: 'TuneIn Radio Pro'
|
589
679
|
version: '$1'
|
@@ -612,11 +702,11 @@
|
|
612
702
|
version: '$1'
|
613
703
|
|
614
704
|
# Evolve Podcast (https://apps.apple.com/us/app/id1199070742)
|
615
|
-
- regex: 'com
|
705
|
+
- regex: 'com\.evolve\.podcast/(\d+[\.\d]+)'
|
616
706
|
name: 'Evolve Podcast'
|
617
707
|
version: '$1'
|
618
708
|
|
619
|
-
- regex: ' Rocket
|
709
|
+
- regex: ' Rocket\.Chat\+?/(\d+[\.\d]+)'
|
620
710
|
name: 'Rocket Chat'
|
621
711
|
version: '$1'
|
622
712
|
|
@@ -690,7 +780,7 @@
|
|
690
780
|
version: '$1'
|
691
781
|
|
692
782
|
# Microsoft Teams (https://www.microsoft.com/en/microsoft-teams/group-chat-software)
|
693
|
-
- regex: 'Teams/(\d+[\.\d]+)'
|
783
|
+
- regex: '(?:maglev|Teams)/(\d+[\.\d]+)'
|
694
784
|
name: 'Teams'
|
695
785
|
version: '$1'
|
696
786
|
|
@@ -826,7 +916,6 @@
|
|
826
916
|
name: 'Google Podcasts'
|
827
917
|
version: '$1'
|
828
918
|
|
829
|
-
|
830
919
|
# Windows CryptoAPI (https://www.microsoft.com/en-us/)
|
831
920
|
- regex: 'Microsoft-CryptoAPI/(\d+[\.\d]+)'
|
832
921
|
name: 'Windows CryptoAPI'
|
@@ -938,7 +1027,7 @@
|
|
938
1027
|
version: ''
|
939
1028
|
|
940
1029
|
# Battle.net (https://eu.shop.battle.net/en-us)
|
941
|
-
- regex: 'Battle
|
1030
|
+
- regex: 'Battle\.net/(\d+[\.\d]+)'
|
942
1031
|
name: 'Battle.net'
|
943
1032
|
version: '$1'
|
944
1033
|
|
@@ -958,7 +1047,7 @@
|
|
958
1047
|
version: '$1'
|
959
1048
|
|
960
1049
|
# Bible KJV (https://apps.apple.com/us/app/bible-kjv/id544098932)
|
961
|
-
- regex: 'com
|
1050
|
+
- regex: 'com\.meevii\.bibleKJV/(\d+[\.\d]+)'
|
962
1051
|
name: 'Bible KJV'
|
963
1052
|
version: '$1'
|
964
1053
|
|
@@ -968,7 +1057,7 @@
|
|
968
1057
|
version: '$1'
|
969
1058
|
|
970
1059
|
# Paint by Number (https://apps.apple.com/us/app/paint-by-number-coloring-games/id1420058690)
|
971
|
-
- regex: 'com
|
1060
|
+
- regex: 'com\.paint\.bynumber/(\d+[\.\d]+)'
|
972
1061
|
name: 'Paint by Number'
|
973
1062
|
version: '$1'
|
974
1063
|
|
@@ -998,14 +1087,10 @@
|
|
998
1087
|
version: '$1'
|
999
1088
|
|
1000
1089
|
# Blackboard (https://apps.apple.com/us/app/blackboard/id950424861)
|
1001
|
-
- regex: 'Blackboard/(\d+[\.\d]+)'
|
1090
|
+
- regex: 'Blackboard/(\d+[\.\d]+)?'
|
1002
1091
|
name: 'Blackboard'
|
1003
1092
|
version: '$1'
|
1004
1093
|
|
1005
|
-
- regex: 'Blackboard/unspecified'
|
1006
|
-
name: 'Blackboard'
|
1007
|
-
version: ''
|
1008
|
-
|
1009
1094
|
# QQMusic (https://apps.apple.com/cn/app/qq%E9%9F%B3%E4%B9%90-%E5%90%AC%E6%88%91%E6%83%B3%E5%90%AC/id414603431)
|
1010
1095
|
- regex: 'QQMusic/(\d+[\.\d]+)'
|
1011
1096
|
name: 'QQMusic'
|
@@ -1067,9 +1152,9 @@
|
|
1067
1152
|
version: '$1'
|
1068
1153
|
|
1069
1154
|
# Instabridge (https://instabridge.com/en/)
|
1070
|
-
- regex: 'Instabridge'
|
1155
|
+
- regex: 'Instabridge(?:/([\d\.]+))?'
|
1071
1156
|
name: 'Instabridge'
|
1072
|
-
version: ''
|
1157
|
+
version: '$1'
|
1073
1158
|
|
1074
1159
|
# Be Focused (https://apps.apple.com/app/id973130201)
|
1075
1160
|
- regex: 'Be Focused/(\d+\.[\.\d]+)?'
|
@@ -1086,11 +1171,6 @@
|
|
1086
1171
|
name: 'Focus Keeper'
|
1087
1172
|
version: '$1'
|
1088
1173
|
|
1089
|
-
# Quick Search TV (https://play.google.com/store/apps/details?id=com.aospstudio.tvsearch)
|
1090
|
-
- regex: 'Quick Search TV/(\d+\.[\.\d]+)'
|
1091
|
-
name: 'Quick Search TV'
|
1092
|
-
version: '$1'
|
1093
|
-
|
1094
1174
|
# Microsoft Store (https://www.microsoft.com/en-us/store/apps/windows)
|
1095
1175
|
- regex: 'WindowsStoreSDK'
|
1096
1176
|
name: 'Microsoft Store'
|
@@ -1102,7 +1182,7 @@
|
|
1102
1182
|
version: '$1'
|
1103
1183
|
|
1104
1184
|
# IMO.IM HD Version https://play.google.com/store/apps/details?id=com.imo.android.imoimhd
|
1105
|
-
- regex: 'imoAndroid/(20\d{2}
|
1185
|
+
- regex: 'imoAndroid/(20\d{2}\.[\.\d]+)'
|
1106
1186
|
name: 'IMO HD Video Calls & Chat'
|
1107
1187
|
version: '$1'
|
1108
1188
|
|
@@ -1111,9 +1191,12 @@
|
|
1111
1191
|
name: 'IMO International Calls & Chat'
|
1112
1192
|
version: '$1'
|
1113
1193
|
|
1114
|
-
# Microsoft Bing
|
1115
|
-
- regex: '
|
1116
|
-
name: 'Microsoft Bing
|
1194
|
+
# Microsoft Bing (https://play.google.com/store/apps/details?id=com.microsoft.bing | https://apps.apple.com/us/app/bing-chat-with-ai-gpt-4/id345323231)
|
1195
|
+
- regex: '(?:Bing)?Sapphire/(\d+\.[\.\d]+)'
|
1196
|
+
name: 'Microsoft Bing'
|
1197
|
+
version: '$1'
|
1198
|
+
- regex: 'BingWeb(?:/([\d\.]+))?|bingipadclient'
|
1199
|
+
name: 'Microsoft Bing'
|
1117
1200
|
version: '$1'
|
1118
1201
|
|
1119
1202
|
# Microsoft Start (https://play.google.com/store/apps/details?id=com.microsoft.amp.apps.bingnews | https://apps.apple.com/us/app/microsoft-start/id945416273)
|
@@ -1121,6 +1204,11 @@
|
|
1121
1204
|
name: 'Microsoft Start'
|
1122
1205
|
version: '$1'
|
1123
1206
|
|
1207
|
+
# Microsoft Copilot (https://play.google.com/store/apps/details?id=com.microsoft.copilot | https://apps.apple.com/us/app/microsoft-copilot/id6472538445)
|
1208
|
+
- regex: 'CopilotSapphire/(\d+\.[\.\d]+)'
|
1209
|
+
name: 'Microsoft Copilot'
|
1210
|
+
version: '$1'
|
1211
|
+
|
1124
1212
|
# HiSearch
|
1125
1213
|
- regex: '.+HiSearch/(\d+\.[\.\d]+)'
|
1126
1214
|
name: 'HiSearch'
|
@@ -1132,7 +1220,7 @@
|
|
1132
1220
|
version: '$1'
|
1133
1221
|
|
1134
1222
|
# F-Secure SAFE (https://apps.apple.com/app/f-secure-safe/id572847748)
|
1135
|
-
- regex: 'FSCDCSafe (\d+\.[\.\d]+)'
|
1223
|
+
- regex: 'FSCDCSafe[ /](\d+\.[\.\d]+)'
|
1136
1224
|
name: 'F-Secure SAFE'
|
1137
1225
|
version: '$1'
|
1138
1226
|
|
@@ -1152,12 +1240,12 @@
|
|
1152
1240
|
version: ''
|
1153
1241
|
|
1154
1242
|
# Q-municate (https://www.qmunicateh10.com | https://apps.apple.com/gb/app/q-municate/id909698517)
|
1155
|
-
- regex: 'com
|
1243
|
+
- regex: 'com\.Nanoteq\.QmunicateH10p.+/(\d+\.[\.\d]+) \('
|
1156
1244
|
name: 'Q-municate'
|
1157
1245
|
version: '$1'
|
1158
1246
|
|
1159
1247
|
# NET.mede (https://apps.apple.com/us/app/net-mede/id597007101)
|
1160
|
-
- regex: 'NET
|
1248
|
+
- regex: 'NET\.mede'
|
1161
1249
|
name: 'NET.mede'
|
1162
1250
|
version: ''
|
1163
1251
|
|
@@ -1202,7 +1290,7 @@
|
|
1202
1290
|
version: '$1'
|
1203
1291
|
|
1204
1292
|
# Safari Search Helper
|
1205
|
-
- regex: 'com
|
1293
|
+
- regex: 'com\.apple\.Safari\.SearchHelper/(\d+\.[\.\d]+)'
|
1206
1294
|
name: 'Safari Search Helper'
|
1207
1295
|
version: '$1'
|
1208
1296
|
|
@@ -1212,7 +1300,7 @@
|
|
1212
1300
|
version: ''
|
1213
1301
|
|
1214
1302
|
# Mercantile Bank of Michigan (https://apps.apple.com/us/app/mercantile-bank-of-michigan/id428982831)
|
1215
|
-
- regex: 'com
|
1303
|
+
- regex: 'com\.mercbank\.s1mobileipad'
|
1216
1304
|
name: 'Mercantile Bank of Michigan'
|
1217
1305
|
version: ''
|
1218
1306
|
|
@@ -1260,8 +1348,8 @@
|
|
1260
1348
|
name: 'SafeIP'
|
1261
1349
|
version: ''
|
1262
1350
|
|
1263
|
-
# Surfshark (https://play.google.com/store/apps/details?id=com.surfshark.vpnclient.android)
|
1264
|
-
- regex: '
|
1351
|
+
# Surfshark (https://play.google.com/store/apps/details?id=com.surfshark.vpnclient.android | https://apps.apple.com/app/apple-store/id1391782046)
|
1352
|
+
- regex: 'Surfshark(?:Android)?/([\d\.]+)'
|
1265
1353
|
name: 'Surfshark'
|
1266
1354
|
version: '$1'
|
1267
1355
|
|
@@ -1296,15 +1384,15 @@
|
|
1296
1384
|
version: '$1'
|
1297
1385
|
|
1298
1386
|
# Amazon Shopping (https://play.google.com/store/apps/details?id=com.amazon.mShop.android.shopping)
|
1299
|
-
- regex: 'Amazon
|
1387
|
+
- regex: 'Amazon\.com/(\d+\.[\.\d]+)'
|
1300
1388
|
name: 'Amazon Shopping'
|
1301
1389
|
version: '$1'
|
1302
1390
|
|
1303
1391
|
# mobile.de (https://play.google.com/store/apps/details?id=de.mobile.android.app)
|
1304
|
-
- regex: 'de
|
1392
|
+
- regex: 'de\.mobile\.android\.app/(\d+\.[\.\d]+)'
|
1305
1393
|
name: 'mobile.de'
|
1306
1394
|
version: '$1'
|
1307
|
-
- regex: 'de
|
1395
|
+
- regex: 'de\.mobile\.android\.app/(.*) \((\d+\.[\.\d]+)\)'
|
1308
1396
|
name: 'mobile.de'
|
1309
1397
|
version: '$2'
|
1310
1398
|
|
@@ -1318,11 +1406,6 @@
|
|
1318
1406
|
name: "Don't Waste My Time!"
|
1319
1407
|
version: '$1'
|
1320
1408
|
|
1321
|
-
# Surfshark (https://apps.apple.com/app/apple-store/id1391782046)
|
1322
|
-
- regex: 'Surfshark/(\d+\.[\.\d]+)'
|
1323
|
-
name: 'Surfshark'
|
1324
|
-
version: '$1'
|
1325
|
-
|
1326
1409
|
# 1Password (https://apps.apple.com/us/app/1password-password-manager/id568903335)
|
1327
1410
|
- regex: '1Password/(\d+\.[\.\d]+)'
|
1328
1411
|
name: '1Password'
|
@@ -1343,16 +1426,16 @@
|
|
1343
1426
|
name: 'Yahoo OneSearch'
|
1344
1427
|
version: '$1'
|
1345
1428
|
|
1346
|
-
# Bing iPad
|
1347
|
-
- regex: 'bingipadclient'
|
1348
|
-
name: 'Bing iPad'
|
1349
|
-
version: ''
|
1350
|
-
|
1351
1429
|
# AntiBrowserSpy (https://www.abelssoft.de/en/windows/security-privacy/antibrowserspy)
|
1352
1430
|
- regex: 'anonymized by Abelssoft'
|
1353
1431
|
name: 'AntiBrowserSpy'
|
1354
1432
|
version: ''
|
1355
1433
|
|
1434
|
+
# Browser-Anonymizer (https://www.almisoft.de/)
|
1435
|
+
- regex: 'Anonymisiert durch AlMiSoft(?! Browser-Maulkorb)'
|
1436
|
+
name: 'Browser-Anonymizer'
|
1437
|
+
version: ''
|
1438
|
+
|
1356
1439
|
# 다음 or Daum
|
1357
1440
|
- regex: 'DaumApps/(\d+\.[.\d]+)?'
|
1358
1441
|
name: 'Daum'
|
@@ -1374,7 +1457,7 @@
|
|
1374
1457
|
version: '$1'
|
1375
1458
|
|
1376
1459
|
# Spotify (https://apps.apple.com/us/app/spotify-music-and-podcasts/id324684580)
|
1377
|
-
- regex: '(?:Spotify(?:-Lite)?/(\d+\.[.\d]+)|^spotify_)'
|
1460
|
+
- regex: '(?:Spotify(?:-Lite)?/(\d+\.[.\d]+|12\d+)|^spotify_)'
|
1378
1461
|
name: 'Spotify'
|
1379
1462
|
version: '$1'
|
1380
1463
|
|
@@ -1383,22 +1466,11 @@
|
|
1383
1466
|
name: 'Amazon Music'
|
1384
1467
|
version: '$1'
|
1385
1468
|
|
1386
|
-
|
1387
1469
|
# Klarna (https://apps.apple.com/us/app/klarna-shop-now-pay-later/id1115120118)
|
1388
|
-
- regex: 'Klarna/(\d+\.[.\d]+)'
|
1470
|
+
- regex: 'Klarna/(\d+\.[.\d]+)?'
|
1389
1471
|
name: 'Klarna'
|
1390
1472
|
version: '$1'
|
1391
1473
|
|
1392
|
-
# WhatsApp+2
|
1393
|
-
- regex: 'YoWhatsApp2Plus(?:/(\d+[\.\d]+))?'
|
1394
|
-
name: 'WhatsApp+2'
|
1395
|
-
version: '$1'
|
1396
|
-
|
1397
|
-
# GBWhatsApp
|
1398
|
-
- regex: 'GBWhatsApp(?:/(\d+[\.\d]+))?'
|
1399
|
-
name: 'GBWhatsApp'
|
1400
|
-
version: '$1'
|
1401
|
-
|
1402
1474
|
# R (https://www.r-project.org/)
|
1403
1475
|
- regex: '^R/(\d+[\.\d]+)'
|
1404
1476
|
name: 'R'
|
@@ -1410,12 +1482,12 @@
|
|
1410
1482
|
version: ''
|
1411
1483
|
|
1412
1484
|
# Audible
|
1413
|
-
- regex: '^(?:Audible, Android, |com
|
1485
|
+
- regex: '^(?:Audible, Android, |com\.audible\.playersdk\.player/|Audible/)(\d+\.[.\d]+)?'
|
1414
1486
|
name: 'Audible'
|
1415
1487
|
version: '$1'
|
1416
1488
|
|
1417
1489
|
# Overcast (http://overcast.fm/)
|
1418
|
-
- regex: 'Overcast/?(\d+\.[.\d]+)? \(\+http://overcast
|
1490
|
+
- regex: 'Overcast/?(\d+\.[.\d]+)? \(\+http://overcast\.fm/; (?:Apple Watch|iOS) podcast'
|
1419
1491
|
name: 'Overcast'
|
1420
1492
|
version: '$1'
|
1421
1493
|
|
@@ -1435,7 +1507,7 @@
|
|
1435
1507
|
version: '$1'
|
1436
1508
|
|
1437
1509
|
# jj2go https://apps.apple.com/us/app/jj2go/id1438749275
|
1438
|
-
- regex: 'RelesysApp/(\d+\.[.\d]+) \(\d{1,2}\) net
|
1510
|
+
- regex: 'RelesysApp/(\d+\.[.\d]+) \(\d{1,2}\) net\.relesysapp\.jj2go'
|
1439
1511
|
name: 'JJ2GO'
|
1440
1512
|
version: '$1'
|
1441
1513
|
|
@@ -1642,9 +1714,9 @@
|
|
1642
1714
|
name: 'Damus'
|
1643
1715
|
version: '$1'
|
1644
1716
|
|
1645
|
-
- regex: 'be\.standaard\.audio'
|
1717
|
+
- regex: '(?:be\.standaard\.audio|^DS podcast/|DS%20Podcast/)([\d\.]+)?'
|
1646
1718
|
name: 'De Standaard'
|
1647
|
-
version: ''
|
1719
|
+
version: '$1'
|
1648
1720
|
|
1649
1721
|
- regex: '^DManager/([\d\.]+)'
|
1650
1722
|
name: 'DManager'
|
@@ -1785,7 +1857,8 @@
|
|
1785
1857
|
name: 'JioSaavn'
|
1786
1858
|
version: '$1'
|
1787
1859
|
|
1788
|
-
|
1860
|
+
# Kajabi (https://kajabi.com/)
|
1861
|
+
- regex: 'KajabiMobileApp|KajabiPodcast'
|
1789
1862
|
name: 'Kajabi'
|
1790
1863
|
version: ''
|
1791
1864
|
|
@@ -1872,7 +1945,7 @@
|
|
1872
1945
|
version: '$1'
|
1873
1946
|
|
1874
1947
|
# The free NRC app offers you the latest news and the digital version of the paper newspaper.
|
1875
|
-
- regex: '(?:NRC-Nieuws/|nl
|
1948
|
+
- regex: '(?:NRC-Nieuws/|nl\.nrc\.nrcapp |com\.twipemobile\.nrc )([\d\.]+)'
|
1876
1949
|
name: 'NRC'
|
1877
1950
|
version: '$1'
|
1878
1951
|
|
@@ -2064,7 +2137,7 @@
|
|
2064
2137
|
name: 'Shadowrocket'
|
2065
2138
|
version: '$1'
|
2066
2139
|
|
2067
|
-
- regex: '^SiriusXM/([\d\.]+)'
|
2140
|
+
- regex: '^(?:SiriusXM|sxm-android|sxm-apple)/([\d\.]+)'
|
2068
2141
|
name: 'SiriusXM'
|
2069
2142
|
version: '$1'
|
2070
2143
|
|
@@ -2165,10 +2238,6 @@
|
|
2165
2238
|
name: 'Yapa'
|
2166
2239
|
version: '$1'
|
2167
2240
|
|
2168
|
-
- regex: '^Zeno$'
|
2169
|
-
name: 'Radio Zeno'
|
2170
|
-
version: ''
|
2171
|
-
|
2172
2241
|
- regex: 'Zune/(\d+\.[.\d]+)'
|
2173
2242
|
name: 'Zune'
|
2174
2243
|
version: ''
|
@@ -2177,13 +2246,8 @@
|
|
2177
2246
|
name: 'UCast'
|
2178
2247
|
version: '$1'
|
2179
2248
|
|
2180
|
-
- regex: '(?:^NPROneAndroid
|
2181
|
-
name: 'NPR
|
2182
|
-
version: '$1'
|
2183
|
-
|
2184
|
-
# unsure what this is, but is used quite a bit
|
2185
|
-
- regex: 'Trackable/([\d\.]+)'
|
2186
|
-
name: 'Trackable'
|
2249
|
+
- regex: '(?:^NPROneAndroid$|(?:^NPR%20One|nprone_android)/([\d\.]+))'
|
2250
|
+
name: 'NPR'
|
2187
2251
|
version: '$1'
|
2188
2252
|
|
2189
2253
|
- regex: 'Uforia/([\d\.]+)'
|
@@ -2194,7 +2258,7 @@
|
|
2194
2258
|
name: 'L.A. Times'
|
2195
2259
|
version: ''
|
2196
2260
|
|
2197
|
-
- regex: '(?:^NYT(?: |%20)?Audio
|
2261
|
+
- regex: '(?:^NYT(?: |%20)?Audio(?:-iOS)?|nytios)/([\d.]+)'
|
2198
2262
|
name: 'The New York Times'
|
2199
2263
|
version: '$1'
|
2200
2264
|
|
@@ -2205,3 +2269,235 @@
|
|
2205
2269
|
- regex: '^Podu_player$'
|
2206
2270
|
name: 'podU'
|
2207
2271
|
version: '$1'
|
2272
|
+
|
2273
|
+
- regex: '^TiviMate/([\d\.]+)'
|
2274
|
+
name: 'TiviMate'
|
2275
|
+
version: '$1'
|
2276
|
+
|
2277
|
+
- regex: 'IPTV/([\d\.]+)'
|
2278
|
+
name: 'IPTV'
|
2279
|
+
version: '$1'
|
2280
|
+
|
2281
|
+
# IPTV Pro (https://play.google.com/store/apps/details?id=ru.iptvremote.android.iptv.pro)
|
2282
|
+
- regex: 'IPTV Pro/([\d\.]+)'
|
2283
|
+
name: 'IPTV Pro'
|
2284
|
+
version: '$1'
|
2285
|
+
|
2286
|
+
- regex: '^com\.audials(?:\.paid)?/([\d\.]+)'
|
2287
|
+
name: 'Audials'
|
2288
|
+
version: '$1'
|
2289
|
+
|
2290
|
+
- regex: '^CoolerFM/([\d\.]+)'
|
2291
|
+
name: 'Cooler'
|
2292
|
+
version: '$1'
|
2293
|
+
|
2294
|
+
- regex: '^Metacast/([\d\.]+)'
|
2295
|
+
name: 'Metacast'
|
2296
|
+
version: '$1'
|
2297
|
+
|
2298
|
+
- regex: '^mowPod/([\d\.]+)'
|
2299
|
+
name: 'mowPod'
|
2300
|
+
version: '$1'
|
2301
|
+
|
2302
|
+
- regex: 'com\.meecel\.feedreader\.RssDemonAd'
|
2303
|
+
name: 'RSSDemon'
|
2304
|
+
version: ''
|
2305
|
+
|
2306
|
+
- regex: '^Virgin(?:%20|\s)Radio/([\d\.]+)'
|
2307
|
+
name: 'Virgin Radio'
|
2308
|
+
version: '$1'
|
2309
|
+
|
2310
|
+
# MetaMask (https://apps.apple.com/us/app/metamask-blockchain-wallet/id1438144202)
|
2311
|
+
- regex: 'MetaMask(?:Mobile)?'
|
2312
|
+
name: 'MetaMask'
|
2313
|
+
version: ''
|
2314
|
+
|
2315
|
+
# +Simple (https://play.google.com/store/apps/details?id=com.massimple.nacion.gcba.es)
|
2316
|
+
- regex: '\+Simple Browser'
|
2317
|
+
name: '+Simple'
|
2318
|
+
version: ''
|
2319
|
+
|
2320
|
+
# Bitwarden (https://bitwarden.com/)
|
2321
|
+
- regex: 'Bitwarden_Mobile/([\d\.]+)'
|
2322
|
+
name: 'Bitwarden'
|
2323
|
+
version: '$1'
|
2324
|
+
|
2325
|
+
# MX Player (https://play.google.com/store/apps/details?id=com.mxtech.videoplayer.ad)
|
2326
|
+
- regex: 'MXPlayer/([\d\.]+)'
|
2327
|
+
name: 'MX Player'
|
2328
|
+
version: '$1'
|
2329
|
+
|
2330
|
+
# HistoryHound
|
2331
|
+
- regex: 'HistoryHound/([\d\.]+)'
|
2332
|
+
name: 'HistoryHound'
|
2333
|
+
version: '$1'
|
2334
|
+
|
2335
|
+
# Quicksilver (https://qsapp.com/)
|
2336
|
+
- regex: 'Quicksilver'
|
2337
|
+
name: 'Quicksilver'
|
2338
|
+
version: ''
|
2339
|
+
|
2340
|
+
# CamScanner (https://play.google.com/store/apps/details?id=com.intsig.camscanner)
|
2341
|
+
- regex: 'CamScanner/([\d\.]+)'
|
2342
|
+
name: 'CamScanner'
|
2343
|
+
version: '$1'
|
2344
|
+
|
2345
|
+
# OBS Studio (https://obsproject.com/)
|
2346
|
+
- regex: 'OBS/(\d+[\.\d]+)'
|
2347
|
+
name: 'OBS Studio'
|
2348
|
+
version: '$1'
|
2349
|
+
|
2350
|
+
# XSplit Broadcaster (https://www.xsplit.com/broadcaster)
|
2351
|
+
- regex: 'XSplitBroadcaster/(\d+[\.\d]+)'
|
2352
|
+
name: 'XSplit Broadcaster'
|
2353
|
+
version: '$1'
|
2354
|
+
|
2355
|
+
# Twitch Studio (https://www.twitch.tv/broadcast/studio)
|
2356
|
+
- regex: 'twitch-desktop-electron-platform.*spotlight/(\d+[\.\d]+)'
|
2357
|
+
name: 'Twitch Studio'
|
2358
|
+
version: '$1'
|
2359
|
+
|
2360
|
+
# Stream Master (https://www.lovense.com/stream-master)
|
2361
|
+
- regex: 'Stream Master$'
|
2362
|
+
name: 'Stream Master'
|
2363
|
+
version: ''
|
2364
|
+
|
2365
|
+
# Freespoke (https://freespoke.com/)
|
2366
|
+
- regex: 'Freespoke/(\d+\.[\.\d]+)'
|
2367
|
+
name: 'Freespoke'
|
2368
|
+
version: '$1'
|
2369
|
+
|
2370
|
+
# Whatplay (https://play.google.com/store/apps/details?id=com.repotools.whatplay)
|
2371
|
+
- regex: 'Whatplay'
|
2372
|
+
name: 'Whatplay'
|
2373
|
+
version: ''
|
2374
|
+
|
2375
|
+
# Lark (https://www.larksuite.com/)
|
2376
|
+
- regex: 'Lark/(\d+[\.\d]+)'
|
2377
|
+
name: 'Lark'
|
2378
|
+
version: '$1'
|
2379
|
+
|
2380
|
+
# SearchCraft (https://secr.baidu.com/)
|
2381
|
+
- regex: 'SearchCraft/(\d+[\.\d]+)'
|
2382
|
+
name: 'SearchCraft'
|
2383
|
+
version: '$1'
|
2384
|
+
|
2385
|
+
# Crypto.com DeFi Wallet (https://apps.apple.com/us/app/crypto-com-l-defi-wallet/id1512048310)
|
2386
|
+
- regex: 'DeFiWallet/(\d+[\.\d]+)'
|
2387
|
+
name: 'Crypto.com DeFi Wallet'
|
2388
|
+
version: '$1'
|
2389
|
+
|
2390
|
+
# Clipbox+ (https://clipbox-official.com/)
|
2391
|
+
- regex: 'Clipbox\+/(\d+[\.\d]+)'
|
2392
|
+
name: 'Clipbox+'
|
2393
|
+
version: '$1'
|
2394
|
+
|
2395
|
+
# HideX (com.flatfish.cal.privacy)
|
2396
|
+
- regex: 'appname/HideX'
|
2397
|
+
name: 'HideX'
|
2398
|
+
version: ''
|
2399
|
+
|
2400
|
+
# Huawei Mobile Services
|
2401
|
+
- regex: 'HMSCore(?:[ /]([\d\.]+))?(?!.*HuaweiBrowser)'
|
2402
|
+
name: 'Huawei Mobile Services'
|
2403
|
+
version: '$1'
|
2404
|
+
|
2405
|
+
# PLAYit (https://play.google.com/store/apps/details?id=com.playit.videoplayer)
|
2406
|
+
- regex: 'appname/PLAYit'
|
2407
|
+
name: 'PLAYit'
|
2408
|
+
version: ''
|
2409
|
+
|
2410
|
+
# Autoplius.lt
|
2411
|
+
- regex: 'Autopliuslt(?:/([\d\.]+))?'
|
2412
|
+
name: 'Autoplius.lt'
|
2413
|
+
version: '$1'
|
2414
|
+
|
2415
|
+
# Hotels.com (https://play.google.com/store/apps/details?id=com.hcom.android)
|
2416
|
+
- regex: 'HCom(?:/([\d\.]+))?'
|
2417
|
+
name: 'Hotels.com'
|
2418
|
+
version: '$1'
|
2419
|
+
|
2420
|
+
# Coinbase (https://apps.apple.com/us/app/coinbase-buy-bitcoin-ether/id886427730)
|
2421
|
+
- regex: 'CoinbaseRetail(?:/([\d\.]+))?'
|
2422
|
+
name: 'Coinbase'
|
2423
|
+
version: '$1'
|
2424
|
+
|
2425
|
+
# De Telegraaf (https://play.google.com/store/apps/details?id=nl.telegraaf)
|
2426
|
+
- regex: 'De Telegraaf(?:/([\d\.]+))?'
|
2427
|
+
name: 'De Telegraaf'
|
2428
|
+
version: '$1'
|
2429
|
+
|
2430
|
+
# waipu.tv (https://www.waipu.tv/)
|
2431
|
+
- regex: 'waipu/([\d\.]+)'
|
2432
|
+
name: 'waipu.tv'
|
2433
|
+
version: '$1'
|
2434
|
+
|
2435
|
+
# Redditor (https://apps.apple.com/us/app/redditor-the-perfect-client/id596236434)
|
2436
|
+
- regex: 'Redditor'
|
2437
|
+
name: 'Redditor'
|
2438
|
+
version: ''
|
2439
|
+
|
2440
|
+
# BuzzVideo
|
2441
|
+
- regex: 'com\.topbuzz\.videoen/([\d\.]+)'
|
2442
|
+
name: 'BuzzVideo'
|
2443
|
+
version: '$1'
|
2444
|
+
|
2445
|
+
# GlobalProtect (https://www.paloaltonetworks.com/sase/globalprotect)
|
2446
|
+
- regex: 'GlobalProtect'
|
2447
|
+
name: 'GlobalProtect'
|
2448
|
+
version: ''
|
2449
|
+
|
2450
|
+
# Trade Me (https://play.google.com/store/apps/details?id=nz.co.trademe.trademe)
|
2451
|
+
- regex: 'Trade Me(?:/([\d\.]+))?'
|
2452
|
+
name: 'Trade Me'
|
2453
|
+
version: '$1'
|
2454
|
+
|
2455
|
+
# XING (https://www.xing.com/)
|
2456
|
+
- regex: 'XING(?:-iPhone)?/([\d\.]+)'
|
2457
|
+
name: 'XING'
|
2458
|
+
version: '$1'
|
2459
|
+
|
2460
|
+
# Bridge (https://quixel.com/bridge)
|
2461
|
+
- regex: 'Bridge/([\d\.]+)'
|
2462
|
+
name: 'Bridge'
|
2463
|
+
version: '$1'
|
2464
|
+
|
2465
|
+
# iPlayTV (https://apps.apple.com/us/app/iplaytv-iptv-m3u-player/id1072226801)
|
2466
|
+
- regex: 'iPlayTV/([\d\.]+)'
|
2467
|
+
name: 'iPlayTV'
|
2468
|
+
version: '$1'
|
2469
|
+
|
2470
|
+
# MOMO (https://www.immomo.com/)
|
2471
|
+
- regex: 'momoWebView/([\d\.]+)'
|
2472
|
+
name: 'MOMO'
|
2473
|
+
version: '$1'
|
2474
|
+
|
2475
|
+
# nate (https://play.google.com/store/apps/details?id=com.nate.android.portalmini)
|
2476
|
+
- regex: 'nate_app;appver:([\d\.]+)'
|
2477
|
+
name: 'nate'
|
2478
|
+
version: '$1'
|
2479
|
+
|
2480
|
+
# SoFi (https://play.google.com/store/apps/details?id=com.sofi.mobile)
|
2481
|
+
- regex: 'SOFI_APP_VERSION=([\d\.]+)'
|
2482
|
+
name: 'SoFi'
|
2483
|
+
version: '$1'
|
2484
|
+
|
2485
|
+
# WNYC (https://play.google.com/store/apps/details?id=org.wnyc.android)
|
2486
|
+
- regex: 'WNYC(?: App)?[/ ]?([\d\.]+)?'
|
2487
|
+
name: 'WNYC'
|
2488
|
+
version: '$1'
|
2489
|
+
|
2490
|
+
# Electron generic apps
|
2491
|
+
- regex: ' (?!(?:AppleWebKit|brave|Franz|Mailspring|Notion|Basecamp|Evernote|catalyst|ramboxpro|BlueMail|BeakerBrowser|TweakStyle|Colibri|Polypane|VibeMate|(?:d|LT|Glass|Sushi|Flash|OhHai)Browser|Sizzy))([a-z0-9]*)(?:-desktop|-electron-app)?/(\d+\.[\d.]+).*Electron/'
|
2492
|
+
name: '$1'
|
2493
|
+
version: '$2'
|
2494
|
+
|
2495
|
+
# Generic app
|
2496
|
+
- regex: 'appname/([^/; ]*)'
|
2497
|
+
name: '$1'
|
2498
|
+
version: ''
|
2499
|
+
|
2500
|
+
# AFNetworking generic
|
2501
|
+
- regex: '(?!AlohaBrowser)([^/;]*)/(\d+\.[\d.]+) \((?:iPhone|iPad); (?:iOS|iPadOS) [0-9\.]+; Scale/[0-9\.]+\)'
|
2502
|
+
name: '$1'
|
2503
|
+
version: '$2'
|