-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdevices.js
109 lines (109 loc) · 2.08 KB
/
devices.js
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
module.exports = [
{
name: "mobile-bot",
deviceRegexes: [
/googlebot-mobile/i,
/\+http:\/\/www.google.com\/bot.html/,
/http:\/\/www.google.com\/mobile\/adsbot.html/,
/bingbot/,
],
},
{
name: "bot",
deviceRegexes: [
/(ads|google|bing|msn|yandex|baidu|ro|career|seznam|)bot/i,
/(baidu|jike|symantec)spider/i,
/scanner/i,
/(web|criteo-)crawler/i,
/Dispatch/i,
/Mediapartners-Google/i,
/AhrefsBot/i,
/service-fetcher/i,
/kube/i,
/thetradedesk/i
],
},
{
name: "tablet-ipad",
deviceRegexes: [/ipad/i],
},
{
name: "mobile-iphone",
deviceRegexes: [/ip(hone|od)/i],
},
{
name: "mobile-android",
deviceRegexes: [/android.*(mobile|mini)/i],
},
{
name: "tablet-android",
deviceRegexes: [/android 3/i, /android/i],
},
{
name: "tablet-rim",
deviceRegexes: [/PlayBook; U; RIM Tablet/i],
},
{
name: "tablet-hp",
deviceRegexes: [/hp-tablet.*TouchPad/i],
},
{
name: "tablet-kindle",
deviceRegexes: [/Kindle/i],
},
{
name: "tablet-microsoft",
deviceRegexes: [/Touch.+Tablet PC/, /Windows NT [0-9.]+; ARM;/],
},
{
name: "tablet",
deviceRegexes: [/tablet/i],
},
{
name: "mobile-firefoxos",
deviceRegexes: [/Mobile.+Firefox/],
},
{
name: "mobile-smartphone",
deviceRegexes: [
/^HTC/,
/Fennec/,
/IEMobile/,
/BlackBerry/,
/BB10.*Mobile/,
/GT-.*Build\/GINGERBREAD/,
/SymbianOS.*AppleWebKit/,
],
},
{
name: "mobile-generic",
deviceRegexes: [
/symbian/i,
/sonyericsson/i,
/nokia/i,
/samsung/i,
/lg/i,
/bada/i,
/blazer/i,
/cellphone/i,
/iemobile/i,
/midp-2.0/i,
/u990/i,
/netfront/i,
/opera mini/i,
/palm/i,
/nintendo wii/i,
/playstation portable/i,
/portalmmm/i,
/proxinet/i,
/sonyericsson/i,
/symbian/i,
/windows\ ?ce/i,
/winwap/i,
/eudoraweb/i,
/htc/i,
/240x320/i,
/avantgo/i,
],
},
];