-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up README, Set asOf in ENV, Add deployctl-based GHA deploys
- Loading branch information
1 parent
d0bb0b4
commit 1f421ae
Showing
20 changed files
with
504 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
<div style="margin: auto; display: flex; align-items: center; justify-content: center; gap: 16px"> | ||
<img src='/static/[email protected]' width='64' alt='User-Agent.Info Logo' /> | ||
<h1>User Agent Info</h1> | ||
</div> | ||
<h2><img src='/static/[email protected]' height='30' alt='User-Agent.Info Logo' /> User Agent Info</h2> | ||
|
||
## Features | ||
|
||
hello | ||
### Features | ||
|
||
- User-Agent lookup via Web UI and API | ||
- https://user-agent.info/ | ||
- `curl https://user-agent.info/api/v1/agents` | ||
- GET https://user-agent.info/api/v1/agents | ||
- Usage / popularity stats for browser version | ||
- Release date for browser version | ||
|
||
|
@@ -23,7 +18,7 @@ schema details. | |
curl -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.3' https://user-agent.info/api/v1/agents | ||
|
||
# `ua` query parameter | ||
curl https://user-agent.info/api/v1/agents?ua=Mozilla/5.0 '(Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.3' | ||
curl 'https://user-agent.info/api/v1/agents?ua=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.3' | ||
``` | ||
|
||
## Local Development | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,85 @@ | ||
type RegionalDeviceStatProps = { asOf: string; ww: { desktop: Record<string, number>; mobile: Record<string, number> }; na: { desktop: Record<string, number>; mobile: Record<string, number> } } | ||
const UsageStats: RegionalDeviceStatProps = { | ||
asOf: "2024-10-21T19:28:02.210Z", | ||
ww: { desktop: { | ||
"Chrome": 64.93, | ||
"Edge": 13.72, | ||
"Safari": 9.15, | ||
"Firefox": 6.5, | ||
"Opera": 3.09, | ||
"360 Safe Browser": 0.95, | ||
"Yandex Browser": 0.53, | ||
"IE": 0.38, | ||
"QQ Browser": 0.23, | ||
"Coc Coc": 0.12, | ||
"Sogou Explorer": 0.1, | ||
"Mozilla": 0.09, | ||
"Whale Browser": 0.08, | ||
"Edge Legacy": 0.05, | ||
"UC Browser": 0.02, | ||
"Chromium": 0.01, | ||
"Other": 0.05 | ||
}, mobile: { | ||
"Chrome": 67.2, | ||
"Safari": 22.99, | ||
"Samsung Internet": 3.79, | ||
"Opera": 1.83, | ||
"UC Browser": 1.74, | ||
"Firefox": 0.53, | ||
"Edge": 0.44, | ||
"QQ Browser": 0.42, | ||
"Android": 0.36, | ||
"Yandex Browser": 0.27, | ||
"Whale Browser": 0.14, | ||
"Coc Coc": 0.08, | ||
"Instabridge": 0.05, | ||
"KaiOS": 0.04, | ||
"Ecosia": 0.03, | ||
"Puffin": 0.03, | ||
"Unknown": 0.02, | ||
"Phoenix": 0.01, | ||
"Other": 0.02 | ||
} }, | ||
na: { desktop: { | ||
"Chrome": 59.67, | ||
"Safari": 15.55, | ||
"Edge": 15.22, | ||
"Firefox": 7.2, | ||
"Opera": 1.65, | ||
"IE": 0.24, | ||
"Mozilla": 0.23, | ||
"Yandex Browser": 0.06, | ||
"360 Safe Browser": 0.05, | ||
"Edge Legacy": 0.04, | ||
"SeaMonkey": 0.02, | ||
"QQ Browser": 0.01, | ||
"Pale Moon": 0.01, | ||
"Chromium": 0.01, | ||
"Other": 0.04 | ||
}, mobile: { | ||
"Chrome": 49.23, | ||
"Safari": 45.39, | ||
"Samsung Internet": 3, | ||
"Firefox": 0.98, | ||
"Opera": 0.5, | ||
"Edge": 0.42, | ||
"UC Browser": 0.13, | ||
"Android": 0.12, | ||
"Yandex Browser": 0.07, | ||
"Unknown": 0.04, | ||
"QQ Browser": 0.04, | ||
"Ecosia": 0.02, | ||
"Other": 0.05 | ||
} }, | ||
}; export default UsageStats | ||
type RegionalDeviceStatProps = { | ||
asOf: string | ||
ww: { desktop: Record<string, number>; mobile: Record<string, number> } | ||
na: { desktop: Record<string, number>; mobile: Record<string, number> } | ||
} | ||
const UsageStats: RegionalDeviceStatProps = { | ||
asOf: '2024-10-21T20:52:12.199Z', | ||
ww: { | ||
desktop: { | ||
'Chrome': 64.93, | ||
'Edge': 13.72, | ||
'Safari': 9.15, | ||
'Firefox': 6.5, | ||
'Opera': 3.09, | ||
'360 Safe Browser': 0.95, | ||
'Yandex Browser': 0.53, | ||
'IE': 0.38, | ||
'QQ Browser': 0.23, | ||
'Coc Coc': 0.12, | ||
'Sogou Explorer': 0.1, | ||
'Mozilla': 0.09, | ||
'Whale Browser': 0.08, | ||
'Edge Legacy': 0.05, | ||
'UC Browser': 0.02, | ||
'Chromium': 0.01, | ||
'Other': 0.05, | ||
}, | ||
mobile: { | ||
'Chrome': 67.2, | ||
'Safari': 22.99, | ||
'Samsung Internet': 3.79, | ||
'Opera': 1.83, | ||
'UC Browser': 1.74, | ||
'Firefox': 0.53, | ||
'Edge': 0.44, | ||
'QQ Browser': 0.42, | ||
'Android': 0.36, | ||
'Yandex Browser': 0.27, | ||
'Whale Browser': 0.14, | ||
'Coc Coc': 0.08, | ||
'Instabridge': 0.05, | ||
'KaiOS': 0.04, | ||
'Ecosia': 0.03, | ||
'Puffin': 0.03, | ||
'Unknown': 0.02, | ||
'Phoenix': 0.01, | ||
'Other': 0.02, | ||
}, | ||
}, | ||
na: { | ||
desktop: { | ||
'Chrome': 59.67, | ||
'Safari': 15.55, | ||
'Edge': 15.22, | ||
'Firefox': 7.2, | ||
'Opera': 1.65, | ||
'IE': 0.24, | ||
'Mozilla': 0.23, | ||
'Yandex Browser': 0.06, | ||
'360 Safe Browser': 0.05, | ||
'Edge Legacy': 0.04, | ||
'SeaMonkey': 0.02, | ||
'QQ Browser': 0.01, | ||
'Pale Moon': 0.01, | ||
'Chromium': 0.01, | ||
'Other': 0.04, | ||
}, | ||
mobile: { | ||
'Chrome': 49.23, | ||
'Safari': 45.39, | ||
'Samsung Internet': 3, | ||
'Firefox': 0.98, | ||
'Opera': 0.5, | ||
'Edge': 0.42, | ||
'UC Browser': 0.13, | ||
'Android': 0.12, | ||
'Yandex Browser': 0.07, | ||
'Unknown': 0.04, | ||
'QQ Browser': 0.04, | ||
'Ecosia': 0.02, | ||
'Other': 0.05, | ||
}, | ||
}, | ||
} | ||
export default UsageStats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,50 @@ | ||
[{"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.3", "pct": 32.43}, {"ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.3", "pct": 12.23}, {"ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.1", "pct": 11.07}, {"ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1 Safari/605.1.1", "pct": 10.3}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.", "pct": 7.72}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.", "pct": 6.69}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.", "pct": 5.15}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.", "pct": 3.6}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/117.", "pct": 2.06}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.3", "pct": 1.54}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.3", "pct": 1.54}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 OPR/113.0.0.", "pct": 1.03}, {"ua": "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Geck", "pct": 1.03}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Edg/124.0.0.", "pct": 1.03}, {"ua": "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.", "pct": 1.03}, {"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 OpenWave/93.4.3888.3", "pct": 0.51}, {"ua": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/26.0 Chrome/122.0.0.0 Safari/537.3", "pct": 0.51}, {"ua": "Mozilla/5.0 (Windows NT 6.1; rv:109.0) Gecko/20100101 Firefox/115.", "pct": 0.51}] | ||
[ | ||
{ "ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.3", "pct": 32.43 }, | ||
{ | ||
"ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.3", | ||
"pct": 12.23 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.1", | ||
"pct": 11.07 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1 Safari/605.1.1", | ||
"pct": 10.3 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.", | ||
"pct": 7.72 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.", "pct": 6.69 }, | ||
{ | ||
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.", | ||
"pct": 5.15 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.", | ||
"pct": 3.6 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/117.", "pct": 2.06 }, | ||
{ "ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.3", "pct": 1.54 }, | ||
{ "ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.3", "pct": 1.54 }, | ||
{ | ||
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 OPR/113.0.0.", | ||
"pct": 1.03 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Geck", "pct": 1.03 }, | ||
{ | ||
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Edg/124.0.0.", | ||
"pct": 1.03 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.", "pct": 1.03 }, | ||
{ | ||
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 OpenWave/93.4.3888.3", | ||
"pct": 0.51 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/26.0 Chrome/122.0.0.0 Safari/537.3", | ||
"pct": 0.51 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Windows NT 6.1; rv:109.0) Gecko/20100101 Firefox/115.", "pct": 0.51 } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,66 @@ | ||
[{"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Mobile Safari/537.3", "pct": 51.75}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/26.0 Chrome/122.0.0.0 Mobile Safari/537.3", "pct": 8.77}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Mobile Safari/537.3", "pct": 7.89}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.", "pct": 7.02}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.", "pct": 3.51}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.3", "pct": 2.63}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.3", "pct": 2.63}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/129.0.6668.69 Mobile/15E148 Safari/604.", "pct": 1.75}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 15_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/329.0.660098639 Mobile/15E148 Safari/604.", "pct": 1.75}, {"ua": "Mozilla/5.0 (Linux; Android 11; moto e20 Build/RONS31.267-94-14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.70 Mobile Safari/537.3", "pct": 1.75}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 16_7_10 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1 Ddg/16.", "pct": 0.88}, {"ua": "Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-G980F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/22.0 Chrome/111.0.5563.116 Mobile Safari/537.3", "pct": 0.88}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/129.0.6668.69 Mobile/15E148 Safari/604.", "pct": 0.88}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1 Ddg/17.", "pct": 0.88}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/129.0.6668.69 Mobile/15E148 Safari/604.", "pct": 0.88}, {"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 15_8_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.6 Mobile/15E148 Safari/604.", "pct": 0.88}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Mobile Safari/537.3", "pct": 0.88}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.3", "pct": 0.88}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.3", "pct": 0.88}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/24.0 Chrome/117.0.0.0 Mobile Safari/537.3", "pct": 0.88}, {"ua": "Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943", "pct": 0.88}, {"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Mobile Safari/537.3", "pct": 0.88}] | ||
[ | ||
{ "ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Mobile Safari/537.3", "pct": 51.75 }, | ||
{ | ||
"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/26.0 Chrome/122.0.0.0 Mobile Safari/537.3", | ||
"pct": 8.77 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Mobile Safari/537.3", "pct": 7.89 }, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.", | ||
"pct": 7.02 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.", | ||
"pct": 3.51 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.3", "pct": 2.63 }, | ||
{ "ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.3", "pct": 2.63 }, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/129.0.6668.69 Mobile/15E148 Safari/604.", | ||
"pct": 1.75 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 15_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/329.0.660098639 Mobile/15E148 Safari/604.", | ||
"pct": 1.75 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (Linux; Android 11; moto e20 Build/RONS31.267-94-14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.70 Mobile Safari/537.3", | ||
"pct": 1.75 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 16_7_10 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1 Ddg/16.", | ||
"pct": 0.88 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-G980F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/22.0 Chrome/111.0.5563.116 Mobile Safari/537.3", | ||
"pct": 0.88 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/129.0.6668.69 Mobile/15E148 Safari/604.", | ||
"pct": 0.88 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1 Ddg/17.", | ||
"pct": 0.88 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/129.0.6668.69 Mobile/15E148 Safari/604.", | ||
"pct": 0.88 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (iPhone; CPU iPhone OS 15_8_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.6 Mobile/15E148 Safari/604.", | ||
"pct": 0.88 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Mobile Safari/537.3", "pct": 0.88 }, | ||
{ "ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.3", "pct": 0.88 }, | ||
{ "ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.3", "pct": 0.88 }, | ||
{ | ||
"ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/24.0 Chrome/117.0.0.0 Mobile Safari/537.3", | ||
"pct": 0.88 | ||
}, | ||
{ | ||
"ua": "Mozilla/5.0 (Linux; Android 7.0; SM-G930V Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 (compatible; Google-Read-Aloud; +https://support.google.com/webmasters/answer/1061943", | ||
"pct": 0.88 | ||
}, | ||
{ "ua": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Mobile Safari/537.3", "pct": 0.88 } | ||
] |
Oops, something went wrong.