device_detector 0.7.0 → 0.8.0
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/Gemfile +4 -0
- data/Rakefile +12 -6
- data/device_detector.gemspec +1 -1
- data/lib/device_detector.rb +65 -4
- data/lib/device_detector/client.rb +6 -6
- data/lib/device_detector/device.rb +62 -31
- data/lib/device_detector/memory_cache.rb +1 -1
- data/lib/device_detector/metadata_extractor.rb +4 -13
- data/lib/device_detector/model_extractor.rb +10 -1
- data/lib/device_detector/name_extractor.rb +1 -1
- data/lib/device_detector/os.rb +141 -5
- data/lib/device_detector/parser.rb +23 -12
- data/lib/device_detector/version.rb +1 -1
- data/lib/device_detector/version_extractor.rb +1 -1
- data/regexes/bots.yml +36 -1
- data/regexes/{browser_engines.yml → client/browser_engine.yml} +4 -1
- data/regexes/{browsers.yml → client/browsers.yml} +31 -27
- data/regexes/{feed_readers.yml → client/feed_readers.yml} +0 -1
- data/regexes/{libraries.yml → client/libraries.yml} +1 -1
- data/regexes/{mediaplayers.yml → client/mediaplayers.yml} +1 -1
- data/regexes/{mobile_apps.yml → client/mobile_apps.yml} +0 -1
- data/regexes/{pim.yml → client/pim.yml} +1 -1
- data/regexes/{devices → device}/cameras.yml +1 -1
- data/regexes/{devices → device}/car_browsers.yml +0 -1
- data/regexes/{devices → device}/consoles.yml +0 -1
- data/regexes/{devices → device}/mobiles.yml +193 -49
- data/regexes/{devices/portable_media_players.yml → device/portable_media_player.yml} +0 -1
- data/regexes/{devices → device}/televisions.yml +0 -3
- data/regexes/oss.yml +105 -102
- data/regexes/vendorfragments.yml +70 -0
- data/spec/device_detector/bot_fixtures_spec.rb +30 -0
- data/spec/device_detector/client_fixtures_spec.rb +31 -0
- data/spec/device_detector/concrete_user_agent_spec.rb +41 -1
- data/spec/device_detector/detector_fixtures_spec.rb +56 -0
- data/spec/device_detector/device_fixtures_spec.rb +36 -0
- data/spec/device_detector/device_spec.rb +3 -3
- data/spec/device_detector/memory_cache_spec.rb +1 -1
- data/spec/device_detector/model_extractor_spec.rb +7 -7
- data/spec/device_detector/os_fixtures_spec.rb +26 -0
- data/spec/device_detector/version_extractor_spec.rb +10 -10
- data/spec/device_detector_spec.rb +1 -1
- data/spec/fixtures/client/browser.yml +986 -0
- data/spec/fixtures/client/feed_reader.yml +180 -0
- data/spec/fixtures/client/library.yml +78 -0
- data/spec/fixtures/client/mediaplayer.yml +144 -0
- data/spec/fixtures/client/mobile_app.yml +24 -0
- data/spec/fixtures/client/pim.yml +90 -0
- data/spec/fixtures/detector/bots.yml +716 -0
- data/spec/fixtures/detector/camera.yml +91 -0
- data/spec/fixtures/detector/car_browser.yml +19 -0
- data/spec/fixtures/detector/console.yml +253 -0
- data/spec/fixtures/detector/desktop.yml +4568 -0
- data/spec/fixtures/detector/feature_phone.yml +719 -0
- data/spec/fixtures/detector/feed_reader.yml +462 -0
- data/spec/fixtures/detector/mediaplayer.yml +141 -0
- data/spec/fixtures/detector/mobile_apps.yml +32 -0
- data/spec/fixtures/detector/phablet.yml +1095 -0
- data/spec/fixtures/detector/portable_media_player.yml +145 -0
- data/spec/fixtures/detector/smart_display.yml +19 -0
- data/spec/fixtures/detector/smartphone.yml +28673 -0
- data/spec/fixtures/detector/tablet.yml +13201 -0
- data/spec/fixtures/detector/tv.yml +1380 -0
- data/spec/fixtures/detector/unknown.yml +3536 -0
- data/spec/fixtures/device/camera.yml +18 -0
- data/spec/fixtures/device/car_browser.yml +6 -0
- data/spec/fixtures/device/console.yml +72 -0
- data/spec/fixtures/parser/bots.yml +2055 -0
- data/spec/fixtures/parser/oss.yml +607 -0
- data/spec/fixtures/parser/vendorfragments.yml +156 -0
- data/spec/spec_helper.rb +6 -2
- metadata +84 -17
@@ -0,0 +1,30 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe DeviceDetector::Bot do
|
4
|
+
|
5
|
+
fixture_dir = File.expand_path('../../fixtures/parser', __FILE__)
|
6
|
+
fixture_files = Dir["#{fixture_dir}/bots.yml"]
|
7
|
+
fixture_files.each do |fixture_file|
|
8
|
+
|
9
|
+
describe File.basename(fixture_file) do
|
10
|
+
|
11
|
+
fixtures = YAML.load_file(fixture_file)
|
12
|
+
|
13
|
+
fixtures.each do |f|
|
14
|
+
user_agent = f["user_agent"]
|
15
|
+
bot = DeviceDetector::Bot.new(user_agent)
|
16
|
+
|
17
|
+
describe user_agent do
|
18
|
+
it "should be a bot" do
|
19
|
+
assert bot.bot?, "isn't a bot"
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should have the expected name" do
|
23
|
+
assert_equal f["bot"]["name"], bot.name, "failed bot name detection"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe DeviceDetector::Client do
|
4
|
+
|
5
|
+
fixture_dir = File.expand_path('../../fixtures/client', __FILE__)
|
6
|
+
fixture_files = Dir["#{fixture_dir}/*.yml"]
|
7
|
+
fixture_files.each do |fixture_file|
|
8
|
+
|
9
|
+
describe File.basename(fixture_file) do
|
10
|
+
|
11
|
+
fixtures = YAML.load_file(fixture_file)
|
12
|
+
fixtures.each do |f|
|
13
|
+
|
14
|
+
user_agent = f["user_agent"]
|
15
|
+
client = DeviceDetector::Client.new(user_agent)
|
16
|
+
|
17
|
+
describe user_agent do
|
18
|
+
|
19
|
+
it "should be known" do
|
20
|
+
assert client.known?, "isn't known as a client"
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should have the expected name" do
|
24
|
+
assert_equal f["client"]["name"], client.name, "failed client name detection"
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
require_relative '../spec_helper'
|
2
2
|
|
3
3
|
describe DeviceDetector do
|
4
4
|
|
@@ -56,5 +56,45 @@ describe DeviceDetector do
|
|
56
56
|
|
57
57
|
end
|
58
58
|
|
59
|
+
describe 'Chrome on Windows' do
|
60
|
+
|
61
|
+
describe '32bit' do
|
62
|
+
|
63
|
+
let(:user_agent) { 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.103 Safari/537.36' }
|
64
|
+
|
65
|
+
it 'returns the correct client name' do
|
66
|
+
client.name.must_equal 'Chrome'
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'recognizes the device name' do
|
70
|
+
client.device_name.must_be_nil
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'recognizes the device type' do
|
74
|
+
client.device_type.must_equal "desktop"
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
78
|
+
|
79
|
+
describe '64bit' do
|
80
|
+
|
81
|
+
let(:user_agent) { 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36' }
|
82
|
+
|
83
|
+
it 'returns the correct client name' do
|
84
|
+
client.name.must_equal 'Chrome'
|
85
|
+
end
|
86
|
+
|
87
|
+
it 'recognizes the device name' do
|
88
|
+
client.device_name.must_be_nil
|
89
|
+
end
|
90
|
+
|
91
|
+
it 'recognizes the device type' do
|
92
|
+
client.device_type.must_equal "desktop"
|
93
|
+
end
|
94
|
+
|
95
|
+
end
|
96
|
+
|
97
|
+
end
|
98
|
+
|
59
99
|
end
|
60
100
|
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe DeviceDetector do
|
4
|
+
|
5
|
+
fixture_dir = File.expand_path('../../fixtures/detector', __FILE__)
|
6
|
+
fixture_files = Dir["#{fixture_dir}/*.yml"]
|
7
|
+
fixture_files.each do |fixture_file|
|
8
|
+
|
9
|
+
describe File.basename(fixture_file) do
|
10
|
+
|
11
|
+
fixtures = YAML.load(File.read(fixture_file))
|
12
|
+
fixtures.each do |f|
|
13
|
+
|
14
|
+
user_agent = f["user_agent"]
|
15
|
+
detector = DeviceDetector.new(user_agent)
|
16
|
+
os = detector.send(:os)
|
17
|
+
device = detector.send(:device)
|
18
|
+
regex_meta = device.send(:regex_meta)
|
19
|
+
|
20
|
+
describe user_agent do
|
21
|
+
it "should be detected" do
|
22
|
+
if detector.bot?
|
23
|
+
assert_equal f["name"], detector.bot_name, "failed bot name detection"
|
24
|
+
else
|
25
|
+
if f["client"]
|
26
|
+
assert_equal f["client"]["name"], detector.name, "failed client name detection"
|
27
|
+
end
|
28
|
+
if f["os_family"] != "Unknown"
|
29
|
+
assert_equal f["os_family"], os.family, "failed os family detection"
|
30
|
+
assert_equal f["os"]["name"], os.name, "failed os name detection"
|
31
|
+
assert_equal f["os"]["short_name"], os.short_name, "failed os short name detection"
|
32
|
+
assert_equal f["os"]["version"], os.full_version, "failed os version detection"
|
33
|
+
end
|
34
|
+
if f["device"]
|
35
|
+
expected_type = f["device"]["type"]
|
36
|
+
actual_type = detector.device_type
|
37
|
+
if expected_type != actual_type
|
38
|
+
# puts "\n", f.inspect, expected_type, actual_type, detector.device_name, regex_meta.inspect
|
39
|
+
# debugger
|
40
|
+
# detector.device_type
|
41
|
+
end
|
42
|
+
assert_equal expected_type, actual_type, "failed device type detection"
|
43
|
+
model = f["device"]["model"]
|
44
|
+
model = model.to_s unless model.nil?
|
45
|
+
assert_equal model, detector.device_name, "failed device name detection"
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe DeviceDetector::Device do
|
4
|
+
|
5
|
+
fixture_dir = File.expand_path('../../fixtures/devices', __FILE__)
|
6
|
+
fixture_files = Dir["#{fixture_dir}/*.yml"]
|
7
|
+
fixture_files.each do |fixture_file|
|
8
|
+
|
9
|
+
describe File.basename(fixture_file) do
|
10
|
+
|
11
|
+
fixtures = YAML.load_file(fixture_file)
|
12
|
+
fixtures.each do |f|
|
13
|
+
|
14
|
+
user_agent = f["user_agent"]
|
15
|
+
device = DeviceDetector::Device.new(user_agent)
|
16
|
+
|
17
|
+
describe user_agent do
|
18
|
+
|
19
|
+
it "should be known" do
|
20
|
+
assert device.known?, "isn't known as a device"
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should have the expected model" do
|
24
|
+
assert_equal f["device"]["model"], device.name, "failed model detection"
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should have the expected type" do
|
28
|
+
expected_device_type = DeviceDetector::Device::DEVICE_NAMES[f["device"]["type"]]
|
29
|
+
assert_equal expected_device_type, device.type, "failed device name detection"
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
require_relative '../spec_helper'
|
2
2
|
|
3
3
|
describe DeviceDetector::Device do
|
4
4
|
|
@@ -132,10 +132,10 @@ describe DeviceDetector::Device do
|
|
132
132
|
|
133
133
|
describe 'televisions' do
|
134
134
|
|
135
|
-
let(:user_agent) { 'Mozilla/5.0 (
|
135
|
+
let(:user_agent) { 'Mozilla/5.0 (Unknown; Linux armv7l) AppleWebKit/537.1+ (KHTML, like Gecko) Safari/537.1+ HbbTV/1.1.1 ( ;LGE ;NetCast 4.0 ;03.10.81 ;1.0M ;)' }
|
136
136
|
|
137
137
|
it 'identifies the device' do
|
138
|
-
device.name.must_equal 'NetCast'
|
138
|
+
device.name.must_equal 'NetCast 4.0'
|
139
139
|
device.type.must_equal 'tv'
|
140
140
|
end
|
141
141
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
require_relative '../spec_helper'
|
2
2
|
|
3
3
|
describe DeviceDetector::ModelExtractor do
|
4
4
|
|
@@ -12,9 +12,9 @@ describe DeviceDetector::ModelExtractor do
|
|
12
12
|
|
13
13
|
let(:regex_meta) do
|
14
14
|
{
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
:regex => '(?:Apple-)?iPhone ?(3GS?|4S?|5[CS]?|6(:? Plus)?)?',
|
16
|
+
:model => 'iPhone $1',
|
17
|
+
:device => 'smartphone'
|
18
18
|
}
|
19
19
|
end
|
20
20
|
|
@@ -46,9 +46,9 @@ describe DeviceDetector::ModelExtractor do
|
|
46
46
|
let(:device_name) { 'iPhone 6' }
|
47
47
|
let(:regex_meta) do
|
48
48
|
{
|
49
|
-
|
50
|
-
|
51
|
-
|
49
|
+
:regex => '(?:Apple-)?iPhone7[C,]2',
|
50
|
+
:model => 'iPhone 6',
|
51
|
+
:device => 'smartphone'
|
52
52
|
}
|
53
53
|
end
|
54
54
|
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe DeviceDetector::OS do
|
4
|
+
|
5
|
+
fixture_dir = File.expand_path('../../fixtures/parser', __FILE__)
|
6
|
+
fixture_files = Dir["#{fixture_dir}/oss.yml"]
|
7
|
+
fixture_files.each do |fixture_file|
|
8
|
+
|
9
|
+
describe File.basename(fixture_file) do
|
10
|
+
|
11
|
+
fixtures = YAML.load(File.read(fixture_file))
|
12
|
+
fixtures.each do |f|
|
13
|
+
user_agent = f["user_agent"]
|
14
|
+
|
15
|
+
describe user_agent do
|
16
|
+
|
17
|
+
it "should have the expected name" do
|
18
|
+
os = DeviceDetector::OS.new(user_agent)
|
19
|
+
assert_equal f["os"]["name"], os.name, "failed OS name detection"
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
require_relative '../spec_helper'
|
2
2
|
|
3
3
|
describe DeviceDetector::VersionExtractor do
|
4
4
|
|
@@ -14,9 +14,9 @@ describe DeviceDetector::VersionExtractor do
|
|
14
14
|
|
15
15
|
let(:regex_meta) do
|
16
16
|
{
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
:regex => 'Avant Browser',
|
18
|
+
:name => 'Avant Browser',
|
19
|
+
:version => ''
|
20
20
|
}
|
21
21
|
end
|
22
22
|
|
@@ -32,9 +32,9 @@ describe DeviceDetector::VersionExtractor do
|
|
32
32
|
let(:version) { 'BonEcho (2.0)' }
|
33
33
|
let(:regex_meta) do
|
34
34
|
{
|
35
|
-
|
36
|
-
|
37
|
-
|
35
|
+
:regex => '(BonEcho|GranParadiso|Lorentz|Minefield|Namoroka|Shiretoko)/(\d+[\.\d]+)',
|
36
|
+
:name => 'Firefox',
|
37
|
+
:version => '$1 ($2)'
|
38
38
|
}
|
39
39
|
end
|
40
40
|
|
@@ -43,7 +43,7 @@ describe DeviceDetector::VersionExtractor do
|
|
43
43
|
end
|
44
44
|
|
45
45
|
it 'removes trailing white spaces' do
|
46
|
-
regex_meta[
|
46
|
+
regex_meta[:version] = regex_meta[:version] + ' '
|
47
47
|
extractor.call.must_equal version
|
48
48
|
end
|
49
49
|
|
@@ -54,8 +54,8 @@ describe DeviceDetector::VersionExtractor do
|
|
54
54
|
let(:user_agent) { 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)' }
|
55
55
|
let(:regex_meta) do
|
56
56
|
{
|
57
|
-
|
58
|
-
|
57
|
+
:regex => 'MSIE.*Trident/4.0',
|
58
|
+
:version => '8.0'
|
59
59
|
}
|
60
60
|
end
|
61
61
|
|
@@ -0,0 +1,986 @@
|
|
1
|
+
---
|
2
|
+
-
|
3
|
+
user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Avant Browser; InfoPath.1)
|
4
|
+
client:
|
5
|
+
type: browser
|
6
|
+
name: Avant Browser
|
7
|
+
short_name: AA
|
8
|
+
version:
|
9
|
+
engine:
|
10
|
+
-
|
11
|
+
user_agent: Mozilla/5.0 (compatible; U; ABrowse 0.6; Syllable) AppleWebKit/420+ (KHTML, like Gecko)
|
12
|
+
client:
|
13
|
+
type: browser
|
14
|
+
name: ABrowse
|
15
|
+
short_name: AB
|
16
|
+
version: "0.6"
|
17
|
+
engine: WebKit
|
18
|
+
-
|
19
|
+
user_agent: HbbTV/1.1.1 (+PVR;Humax;HD FOX+;1.00.12;1.0)CE-HTML/1.0 ANTGalio/3.1.1.23.04.09
|
20
|
+
client:
|
21
|
+
type: browser
|
22
|
+
name: ANTGalio
|
23
|
+
short_name: AG
|
24
|
+
version: "3.1.1.23.04.09"
|
25
|
+
engine:
|
26
|
+
-
|
27
|
+
user_agent: amaya/9.51 libwww/5.4.0
|
28
|
+
client:
|
29
|
+
type: browser
|
30
|
+
name: Amaya
|
31
|
+
short_name: AM
|
32
|
+
version: "9.51"
|
33
|
+
engine:
|
34
|
+
-
|
35
|
+
user_agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.74 Safari/537.36 MRCHROME
|
36
|
+
client:
|
37
|
+
type: browser
|
38
|
+
name: Amigo
|
39
|
+
short_name: AO
|
40
|
+
version: "28.0.1500.74"
|
41
|
+
engine: Blink
|
42
|
+
-
|
43
|
+
user_agent: Mozilla/5.0 (Linux; U; Android 0.5; en-us) AppleWebKit/522+ (KHTML, like Gecko) Safari/419.3
|
44
|
+
client:
|
45
|
+
type: browser
|
46
|
+
name: Android Browser
|
47
|
+
short_name: AN
|
48
|
+
version:
|
49
|
+
engine: WebKit
|
50
|
+
-
|
51
|
+
user_agent: 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Arora/0.10.1 (Git: 1329 e5385f3) Safari/532.1'
|
52
|
+
client:
|
53
|
+
type: browser
|
54
|
+
name: Arora
|
55
|
+
short_name: AR
|
56
|
+
version: "0.10.1"
|
57
|
+
engine: WebKit
|
58
|
+
-
|
59
|
+
user_agent: AmigaVoyager/3.2 (AmigaOS/MC680x0)
|
60
|
+
client:
|
61
|
+
type: browser
|
62
|
+
name: Amiga Voyager
|
63
|
+
short_name: AV
|
64
|
+
version: "3.2"
|
65
|
+
engine:
|
66
|
+
-
|
67
|
+
user_agent: Mozilla/6.0 (Macintosh; U; Amiga-AWeb) Safari 3.1
|
68
|
+
client:
|
69
|
+
type: browser
|
70
|
+
name: Amiga Aweb
|
71
|
+
short_name: AW
|
72
|
+
version:
|
73
|
+
engine:
|
74
|
+
-
|
75
|
+
user_agent: BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/134
|
76
|
+
client:
|
77
|
+
type: browser
|
78
|
+
name: BlackBerry Browser
|
79
|
+
short_name: BB
|
80
|
+
version:
|
81
|
+
engine:
|
82
|
+
-
|
83
|
+
user_agent: Mozilla/5.0 (Linux; U; Android 4.1.2; zh-cn; Coolpad 5950 Build/JZO54K) AppleWebKit/534.24 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.24 T5/2.0 baidubrowser/4.5.20.0 (Baidu; P1 4.1.2)
|
84
|
+
client:
|
85
|
+
type: browser
|
86
|
+
name: Baidu Browser
|
87
|
+
short_name: BD
|
88
|
+
version: "4.5.20.0"
|
89
|
+
engine: WebKit
|
90
|
+
-
|
91
|
+
user_agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.4.9999.1900 Safari/537.31 BDSpark/26.4
|
92
|
+
client:
|
93
|
+
type: browser
|
94
|
+
name: Baidu Spark
|
95
|
+
short_name: BS
|
96
|
+
version: "26.4"
|
97
|
+
engine: WebKit
|
98
|
+
-
|
99
|
+
user_agent: Mozilla/5.0 (Windows; U; Win9x; en; Stable) Gecko/20020911 Beonex/0.8.1-stable
|
100
|
+
client:
|
101
|
+
type: browser
|
102
|
+
name: Beonex
|
103
|
+
short_name: BE
|
104
|
+
version: "0.8.1"
|
105
|
+
engine: Gecko
|
106
|
+
-
|
107
|
+
user_agent: Bunjalloo/0.7.6(Nintendo DS;U;en)
|
108
|
+
client:
|
109
|
+
type: browser
|
110
|
+
name: Bunjalloo
|
111
|
+
short_name: BJ
|
112
|
+
version: "0.7.6"
|
113
|
+
engine:
|
114
|
+
-
|
115
|
+
user_agent: 'Mozilla/4.61 [en] (X11; U; ) - BrowseX (2.0.0 Windows)'
|
116
|
+
client:
|
117
|
+
type: browser
|
118
|
+
name: BrowseX
|
119
|
+
short_name: BX
|
120
|
+
version: "2.0.0"
|
121
|
+
engine:
|
122
|
+
-
|
123
|
+
user_agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en; rv:1.9.2.28) Gecko/20120308 Camino/2.1.2 (like Firefox/3.6.28)
|
124
|
+
client:
|
125
|
+
type: browser
|
126
|
+
name: Camino
|
127
|
+
short_name: CA
|
128
|
+
version: "2.1.2"
|
129
|
+
engine: Gecko
|
130
|
+
-
|
131
|
+
user_agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Comodo_Dragon/17.1.0.0 Chrome/17.0.963.38 Safari/535.11
|
132
|
+
client:
|
133
|
+
type: browser
|
134
|
+
name: Comodo Dragon
|
135
|
+
short_name: CD
|
136
|
+
version: "17.1.0.0"
|
137
|
+
engine: WebKit
|
138
|
+
-
|
139
|
+
user_agent: Mozilla/4.08 (Charon; Inferno)
|
140
|
+
client:
|
141
|
+
type: browser
|
142
|
+
name: Charon
|
143
|
+
short_name: CX
|
144
|
+
version:
|
145
|
+
engine:
|
146
|
+
-
|
147
|
+
user_agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; chromeframe/19.0.1084.52)
|
148
|
+
client:
|
149
|
+
type: browser
|
150
|
+
name: Chrome Frame
|
151
|
+
short_name: CF
|
152
|
+
version: "19.0.1084.52"
|
153
|
+
engine: WebKit
|
154
|
+
-
|
155
|
+
user_agent: Mozilla/5.0 ArchLinux (X11; U; Linux x86_64; en-US) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30
|
156
|
+
client:
|
157
|
+
type: browser
|
158
|
+
name: Chrome
|
159
|
+
short_name: CH
|
160
|
+
version: "12.0.742.100"
|
161
|
+
engine: WebKit
|
162
|
+
-
|
163
|
+
user_agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36
|
164
|
+
client:
|
165
|
+
type: browser
|
166
|
+
name: Chrome
|
167
|
+
short_name: CH
|
168
|
+
version: "36.0.1985.125"
|
169
|
+
engine: Blink
|
170
|
+
-
|
171
|
+
user_agent: Mozilla/5.0 (iPad; CPU OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) CriOS/31.0.1650.18 Mobile/10A523 Safari/8536.25
|
172
|
+
client:
|
173
|
+
type: browser
|
174
|
+
name: Chrome Mobile iOS
|
175
|
+
short_name: CI
|
176
|
+
version: "31.0.1650.18"
|
177
|
+
engine: WebKit
|
178
|
+
-
|
179
|
+
user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20131030 conkeror/1.0pre (Debian-1.0~~pre+git131116-1)
|
180
|
+
client:
|
181
|
+
type: browser
|
182
|
+
name: Conkeror
|
183
|
+
short_name: CK
|
184
|
+
version: "1.0"
|
185
|
+
engine: Gecko
|
186
|
+
-
|
187
|
+
user_agent: Mozilla/5.0 (Linux; Android 4.1.1; ALCATEL ONE TOUCH 6033X Build/JRO03C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.59 Mobile Safari/537.36
|
188
|
+
client:
|
189
|
+
type: browser
|
190
|
+
name: Chrome Mobile
|
191
|
+
short_name: CM
|
192
|
+
version: "31.0.1650.59"
|
193
|
+
engine: Blink
|
194
|
+
-
|
195
|
+
user_agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7 CoolNovo/1.6.5.28
|
196
|
+
client:
|
197
|
+
type: browser
|
198
|
+
name: CoolNovo
|
199
|
+
short_name: CN
|
200
|
+
version: "1.6.5.28"
|
201
|
+
engine: WebKit
|
202
|
+
-
|
203
|
+
user_agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:11.0) Gecko/20100101 Firefox/11.0 CometBird/11.0
|
204
|
+
client:
|
205
|
+
type: browser
|
206
|
+
name: CometBird
|
207
|
+
short_name: CO
|
208
|
+
version: "11.0"
|
209
|
+
engine: Gecko
|
210
|
+
-
|
211
|
+
user_agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13 ChromePlus/1.6.0.0
|
212
|
+
client:
|
213
|
+
type: browser
|
214
|
+
name: ChromePlus
|
215
|
+
short_name: CP
|
216
|
+
version: "1.6.0.0"
|
217
|
+
engine: WebKit
|
218
|
+
-
|
219
|
+
user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/31.0.1650.63 Chrome/31.0.1650.63 Safari/537.36
|
220
|
+
client:
|
221
|
+
type: browser
|
222
|
+
name: Chromium
|
223
|
+
short_name: CR
|
224
|
+
version: "31.0.1650.63"
|
225
|
+
engine: Blink
|
226
|
+
-
|
227
|
+
user_agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/418.9 (KHTML, like Gecko, Safari) Safari/419.3 Cheshire/1.0.ALPHA
|
228
|
+
client:
|
229
|
+
type: browser
|
230
|
+
name: Cheshire
|
231
|
+
short_name: CS
|
232
|
+
version: "1.0"
|
233
|
+
engine: WebKit
|
234
|
+
-
|
235
|
+
user_agent: Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S5380D/S5380DNVKL1; U; Bada/2.0; fr-fr) AppleWebKit/534.20 (KHTML, like Gecko) Dolfin/3.0 Mobile HVGA SMM-MMS/1.2.0 OPN-B
|
236
|
+
client:
|
237
|
+
type: browser
|
238
|
+
name: Dolphin
|
239
|
+
short_name: DF
|
240
|
+
version: "3.0"
|
241
|
+
engine: WebKit
|
242
|
+
-
|
243
|
+
user_agent: Dillo/0.8.5-i18n-misc
|
244
|
+
client:
|
245
|
+
type: browser
|
246
|
+
name: Dillo
|
247
|
+
short_name: DI
|
248
|
+
version: "0.8.5"
|
249
|
+
engine: Dillo
|
250
|
+
-
|
251
|
+
user_agent: ELinks/0.12~pre6-1ubuntu1 (textmode; Ubuntu; Linux 3.11.0-13-generic i686; 100x25-2)
|
252
|
+
client:
|
253
|
+
type: browser
|
254
|
+
name: Elinks
|
255
|
+
short_name: EL
|
256
|
+
version: "0.12"
|
257
|
+
engine: Text-based
|
258
|
+
-
|
259
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i586; en-US; rv:1.6) Gecko/20040413 Epiphany/1.2.6
|
260
|
+
client:
|
261
|
+
type: browser
|
262
|
+
name: Epiphany
|
263
|
+
short_name: EP
|
264
|
+
version: "1.2.6"
|
265
|
+
engine: Gecko
|
266
|
+
-
|
267
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i686; fr-fr) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6
|
268
|
+
client:
|
269
|
+
type: browser
|
270
|
+
name: Epiphany
|
271
|
+
short_name: EP
|
272
|
+
version: "2.30.6"
|
273
|
+
engine: WebKit
|
274
|
+
-
|
275
|
+
user_agent: Mozilla/5.0 (DTV) AppleWebKit/531.2+ (KHTML, like Gecko) Espial/6.1.5 AQUOSBrowser/2.0 (US01DTV;V;0001;0001)
|
276
|
+
client:
|
277
|
+
type: browser
|
278
|
+
name: Espial TV Browser
|
279
|
+
short_name: ES
|
280
|
+
version: "6.1.5"
|
281
|
+
engine: WebKit
|
282
|
+
-
|
283
|
+
user_agent: Mozilla/5.0 (Windows; U; Win95; en-US; rv:1.5) Gecko/20031007 Firebird/0.7
|
284
|
+
client:
|
285
|
+
type: browser
|
286
|
+
name: Firebird
|
287
|
+
short_name: FB
|
288
|
+
version: "0.7"
|
289
|
+
engine: Gecko
|
290
|
+
-
|
291
|
+
user_agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_6; en-us) AppleWebKit/528.16 (KHTML, like Gecko) Fluid/0.9.6 Safari/528.16
|
292
|
+
client:
|
293
|
+
type: browser
|
294
|
+
name: Fluid
|
295
|
+
short_name: FD
|
296
|
+
version: "0.9.6"
|
297
|
+
engine: WebKit
|
298
|
+
-
|
299
|
+
user_agent: Mozilla/5.0 (Android; Linux armv7l; rv:10.0) Gecko/20120118 Firefox/10.0 Fennec/10.0
|
300
|
+
client:
|
301
|
+
type: browser
|
302
|
+
name: Fennec
|
303
|
+
short_name: FE
|
304
|
+
version: "10.0"
|
305
|
+
engine: Gecko
|
306
|
+
-
|
307
|
+
user_agent: Mozilla/5.0 (X11; Arch Linux i686; rv:2.0) Gecko/20110321 Firefox/4.0
|
308
|
+
client:
|
309
|
+
type: browser
|
310
|
+
name: Firefox
|
311
|
+
short_name: FF
|
312
|
+
version: "4.0"
|
313
|
+
engine: Gecko
|
314
|
+
-
|
315
|
+
user_agent: Mozilla/5.0 (BeOS; U; Haiku BePC; en-US; rv:1.8.1.21pre) Gecko/20090218 BonEcho/2.0.0.21pre
|
316
|
+
client:
|
317
|
+
type: browser
|
318
|
+
name: Firefox
|
319
|
+
short_name: FF
|
320
|
+
version: "BonEcho (2.0.0.21)"
|
321
|
+
engine: Gecko
|
322
|
+
-
|
323
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.11) Gecko GranParadiso/3.0.11
|
324
|
+
client:
|
325
|
+
type: browser
|
326
|
+
name: Firefox
|
327
|
+
short_name: FF
|
328
|
+
version: "GranParadiso (3.0.11)"
|
329
|
+
engine: Gecko
|
330
|
+
-
|
331
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9a3pre) Gecko/20070301 Minefield/3.0a3pre
|
332
|
+
client:
|
333
|
+
type: browser
|
334
|
+
name: Firefox
|
335
|
+
short_name: FF
|
336
|
+
version: "Minefield (3.0)"
|
337
|
+
engine: Gecko
|
338
|
+
-
|
339
|
+
user_agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1b5pre) Gecko/20090424 Shiretoko/3.5b5pre
|
340
|
+
client:
|
341
|
+
type: browser
|
342
|
+
name: Firefox
|
343
|
+
short_name: FF
|
344
|
+
version: "Shiretoko (3.5)"
|
345
|
+
engine: Gecko
|
346
|
+
-
|
347
|
+
user_agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3pre) Gecko/20100403 Lorentz/3.6.3plugin2pre (.NET CLR 4.0.20506)
|
348
|
+
client:
|
349
|
+
type: browser
|
350
|
+
name: Firefox
|
351
|
+
short_name: FF
|
352
|
+
version: "Lorentz (3.6.3)"
|
353
|
+
engine: Gecko
|
354
|
+
-
|
355
|
+
user_agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
|
356
|
+
client:
|
357
|
+
type: browser
|
358
|
+
name: Firefox
|
359
|
+
short_name: FF
|
360
|
+
version: "Namoroka (3.6.13)"
|
361
|
+
engine: Gecko
|
362
|
+
-
|
363
|
+
user_agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; pl; rv:1.9.0.16) Gecko/2010021013 Firefox/3.0.16 Flock/2.5.6
|
364
|
+
client:
|
365
|
+
type: browser
|
366
|
+
name: Flock
|
367
|
+
short_name: FL
|
368
|
+
version: "2.5.6"
|
369
|
+
engine: Gecko
|
370
|
+
-
|
371
|
+
user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:2.0) Treco/20110515 Fireweb Navigator/2.4
|
372
|
+
client:
|
373
|
+
type: browser
|
374
|
+
name: Fireweb Navigator
|
375
|
+
short_name: FN
|
376
|
+
version: "2.4"
|
377
|
+
engine:
|
378
|
+
-
|
379
|
+
user_agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20051105 Galeon/1.3.21
|
380
|
+
client:
|
381
|
+
type: browser
|
382
|
+
name: Galeon
|
383
|
+
short_name: GA
|
384
|
+
version: "1.3.21"
|
385
|
+
engine: Gecko
|
386
|
+
-
|
387
|
+
user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; cs-CZ) AppleWebKit/532.4 (KHTML, like Gecko) Google Earth/5.2.1.1329 Safari/532.4
|
388
|
+
client:
|
389
|
+
type: browser
|
390
|
+
name: Google Earth
|
391
|
+
short_name: GE
|
392
|
+
version: "5.2.1.1329"
|
393
|
+
engine: WebKit
|
394
|
+
-
|
395
|
+
user_agent: HotJava/1.1.2 FCS
|
396
|
+
client:
|
397
|
+
type: browser
|
398
|
+
name: HotJava
|
399
|
+
short_name: HJ
|
400
|
+
version: "1.1.2"
|
401
|
+
engine:
|
402
|
+
-
|
403
|
+
user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.12) Gecko/20130823 Firefox/10.0.11esrpre Iceape/2.7.12
|
404
|
+
client:
|
405
|
+
type: browser
|
406
|
+
name: Iceape
|
407
|
+
short_name: IA
|
408
|
+
version: "2.7.12"
|
409
|
+
engine: Gecko
|
410
|
+
-
|
411
|
+
user_agent: IBrowse/2.4 (AmigaOS 3.9; 68K)
|
412
|
+
client:
|
413
|
+
type: browser
|
414
|
+
name: IBrowse
|
415
|
+
short_name: IB
|
416
|
+
version: "2.4"
|
417
|
+
engine:
|
418
|
+
-
|
419
|
+
user_agent: Mozilla/4.5 (compatible; iCab 2.9.9; Macintosh; U; 68K)
|
420
|
+
client:
|
421
|
+
type: browser
|
422
|
+
name: iCab
|
423
|
+
short_name: IC
|
424
|
+
version: "2.9.9"
|
425
|
+
engine: iCab
|
426
|
+
-
|
427
|
+
user_agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_8; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) iCab/4.8 Safari/533.16
|
428
|
+
client:
|
429
|
+
type: browser
|
430
|
+
name: iCab
|
431
|
+
short_name: IC
|
432
|
+
version: "4.8"
|
433
|
+
engine: WebKit
|
434
|
+
-
|
435
|
+
user_agent: Mozilla/5.0 (Windows NT 6.1; rv:26.0) Gecko/20100101 Firefox/26.0 IceDragon/26.0.0.2
|
436
|
+
client:
|
437
|
+
type: browser
|
438
|
+
name: IceDragon
|
439
|
+
short_name: ID
|
440
|
+
version: "26.0.0.2"
|
441
|
+
engine: Gecko
|
442
|
+
-
|
443
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.0.15) Gecko/2009102815 Iceweasel/3.0.6 (Debian-3.0.6-3)
|
444
|
+
client:
|
445
|
+
type: browser
|
446
|
+
name: Iceweasel
|
447
|
+
short_name: IW
|
448
|
+
version: "3.0.6"
|
449
|
+
engine: Gecko
|
450
|
+
-
|
451
|
+
user_agent: Mozilla/4.0 (compatible; MSIE 4.01; Mac_PowerPC)
|
452
|
+
client:
|
453
|
+
type: browser
|
454
|
+
name: Internet Explorer
|
455
|
+
short_name: IE
|
456
|
+
version: "4.01"
|
457
|
+
engine: Trident
|
458
|
+
-
|
459
|
+
user_agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36 Edge/12.0
|
460
|
+
client:
|
461
|
+
type: browser
|
462
|
+
name: Project Spartan
|
463
|
+
short_name: PS
|
464
|
+
version: "12.0"
|
465
|
+
engine: Edge
|
466
|
+
-
|
467
|
+
user_agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; Acer; Allegro)
|
468
|
+
client:
|
469
|
+
type: browser
|
470
|
+
name: IE Mobile
|
471
|
+
short_name: IM
|
472
|
+
version: "9.0"
|
473
|
+
engine: Trident
|
474
|
+
-
|
475
|
+
user_agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Iron/26.0.1450.0 Chrome/26.0.1450.0 Safari/537.36
|
476
|
+
client:
|
477
|
+
type: browser
|
478
|
+
name: Iron
|
479
|
+
short_name: IR
|
480
|
+
version: "26.0.1450.0"
|
481
|
+
engine: WebKit
|
482
|
+
-
|
483
|
+
user_agent: SAMSUNG-GT-S5230-ORANGE/S5230BVIF1 SHP/VPP/R5 Jasmine/0.8 Nextreaming SMM-MMS/1.2.0 profile/MIDP-2.1 configuration/CLDC-1.1
|
484
|
+
client:
|
485
|
+
type: browser
|
486
|
+
name: Jasmine
|
487
|
+
short_name: JS
|
488
|
+
version: "0.8"
|
489
|
+
engine:
|
490
|
+
-
|
491
|
+
user_agent: Mozilla/4.0 (compatible; Linux 2.6.22) NetFront/3.4 Kindle/2.0 (screen 600x800)
|
492
|
+
client:
|
493
|
+
type: browser
|
494
|
+
name: Kindle Browser
|
495
|
+
short_name: KI
|
496
|
+
version: "2.0"
|
497
|
+
engine: NetFront
|
498
|
+
-
|
499
|
+
user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.24pre) Gecko/20100228 K-Meleon/1.5.4
|
500
|
+
client:
|
501
|
+
type: browser
|
502
|
+
name: K-meleon
|
503
|
+
short_name: KM
|
504
|
+
version: "1.5.4"
|
505
|
+
engine: Gecko
|
506
|
+
-
|
507
|
+
user_agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux; de) KHTML/3.5.8 (like Gecko) (Debian)
|
508
|
+
client:
|
509
|
+
type: browser
|
510
|
+
name: Konqueror
|
511
|
+
short_name: KO
|
512
|
+
version: "3.5"
|
513
|
+
engine: KHTML
|
514
|
+
-
|
515
|
+
user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9) Gecko/20080705 Firefox/3.0 Kapiko/3.0
|
516
|
+
client:
|
517
|
+
type: browser
|
518
|
+
name: Kapiko
|
519
|
+
short_name: KP
|
520
|
+
version: "3.0"
|
521
|
+
engine: Gecko
|
522
|
+
-
|
523
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko Fedora/1.9.0.8-1.fc10 Kazehakase/0.5.6
|
524
|
+
client:
|
525
|
+
type: browser
|
526
|
+
name: Kazehakase
|
527
|
+
short_name: KZ
|
528
|
+
version: "0.5.6"
|
529
|
+
engine: Gecko
|
530
|
+
-
|
531
|
+
user_agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/537.36 LBBROWSER
|
532
|
+
client:
|
533
|
+
type: browser
|
534
|
+
name: Liebao
|
535
|
+
short_name: LB
|
536
|
+
version:
|
537
|
+
engine: WebKit
|
538
|
+
-
|
539
|
+
user_agent: Links (2.1pre23; Linux 3.5.0 i686; 237x63)
|
540
|
+
client:
|
541
|
+
type: browser
|
542
|
+
name: Links
|
543
|
+
short_name: LI
|
544
|
+
version: "2.1"
|
545
|
+
engine: Text-based
|
546
|
+
-
|
547
|
+
user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; Lunascape 2.1.3)
|
548
|
+
client:
|
549
|
+
type: browser
|
550
|
+
name: Lunascape
|
551
|
+
short_name: LS
|
552
|
+
version: "2.1.3"
|
553
|
+
engine:
|
554
|
+
-
|
555
|
+
user_agent: Lynx/2.8.8pre.3 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/1.0.1e
|
556
|
+
client:
|
557
|
+
type: browser
|
558
|
+
name: Lynx
|
559
|
+
short_name: LX
|
560
|
+
version: "2.8.8"
|
561
|
+
engine: Text-based
|
562
|
+
-
|
563
|
+
user_agent: Mozilla/5.0 (X11; U; Linux armv7l; en-GB; rv:1.9.2a1pre) Gecko/20090514 Firefox/3.0 Tablet browser 0.9.7 RX-34
|
564
|
+
client:
|
565
|
+
type: browser
|
566
|
+
name: MicroB
|
567
|
+
short_name: MB
|
568
|
+
version: "0.9.7"
|
569
|
+
engine: Gecko
|
570
|
+
-
|
571
|
+
user_agent: NCSA_Mosaic/2.7b5 (X11;Linux 2.6.7 i686) libwww/2.12 modified
|
572
|
+
client:
|
573
|
+
type: browser
|
574
|
+
name: NCSA Mosaic
|
575
|
+
short_name: MC
|
576
|
+
version: "2.7"
|
577
|
+
engine:
|
578
|
+
-
|
579
|
+
user_agent: Mozilla/5.0 (iPad; CPU OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Mercury/8.0.1 Mobile/10A523 Safari/8536.25
|
580
|
+
client:
|
581
|
+
type: browser
|
582
|
+
name: Mercury
|
583
|
+
short_name: ME
|
584
|
+
version: "8.0.1"
|
585
|
+
engine: WebKit
|
586
|
+
-
|
587
|
+
user_agent: Mozilla/5.0 (Linux; U; Android 4.3; zh-cn; MI 3W Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 XiaoMi/MiuiBrowser/1.0
|
588
|
+
client:
|
589
|
+
type: browser
|
590
|
+
name: MIUI Browser
|
591
|
+
short_name: MU
|
592
|
+
version: "1.0"
|
593
|
+
engine: WebKit
|
594
|
+
-
|
595
|
+
user_agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8C148
|
596
|
+
client:
|
597
|
+
type: browser
|
598
|
+
name: Mobile Safari
|
599
|
+
short_name: MF
|
600
|
+
version:
|
601
|
+
engine: WebKit
|
602
|
+
-
|
603
|
+
user_agent: Mozilla/5.0 (X11; Linux) AppleWebKit/535.22 (KHTML, like Gecko) Chrome/18.0.1025.133 Safari/535.22 Midori/0.5
|
604
|
+
client:
|
605
|
+
type: browser
|
606
|
+
name: Midori
|
607
|
+
short_name: MI
|
608
|
+
version: "0.5"
|
609
|
+
engine: WebKit
|
610
|
+
-
|
611
|
+
user_agent: Mozilla/5.0 (Linux; U; en-gb; KFSOWI Build/JDQ39) AppleWebKit/535.19 (KHTML, like Gecko) Silk/3.12 Safari/535.19 Silk-Accelerated=true
|
612
|
+
client:
|
613
|
+
type: browser
|
614
|
+
name: Mobile Silk
|
615
|
+
short_name: MS
|
616
|
+
version: "3.12"
|
617
|
+
engine: Blink
|
618
|
+
-
|
619
|
+
user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.22 (KHTML, like Gecko) Maxthon/4.1.2.2000 Chrome/25.0.1364.99 Safari/537.22
|
620
|
+
client:
|
621
|
+
type: browser
|
622
|
+
name: Maxthon
|
623
|
+
short_name: MX
|
624
|
+
version: "4.1.2.2000"
|
625
|
+
engine: WebKit
|
626
|
+
-
|
627
|
+
user_agent: Mozilla/5.0 (Symbian/3; Series60/5.3 NokiaE7-00/111.040.1511; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/535.1 (KHTML, like Gecko) NokiaBrowser/8.3.1.4 Mobile Safari/535.1
|
628
|
+
client:
|
629
|
+
type: browser
|
630
|
+
name: Nokia Browser
|
631
|
+
short_name: NB
|
632
|
+
version: "8.3.1.4"
|
633
|
+
engine: WebKit
|
634
|
+
-
|
635
|
+
user_agent: NokiaN73-2/3.0-630.0.2 Series60/3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1
|
636
|
+
client:
|
637
|
+
type: browser
|
638
|
+
name: Nokia OSS Browser
|
639
|
+
short_name: 'NO'
|
640
|
+
version: "3.0"
|
641
|
+
engine:
|
642
|
+
-
|
643
|
+
user_agent: Mozilla/5.0 (Linux; U; Android 2.3.3; cs_cz; MT11i Build/GINGERBREAD) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 NetFrontLifeBrowser/2.3 Mobile (Dragonfruit)
|
644
|
+
client:
|
645
|
+
type: browser
|
646
|
+
name: NetFront Life
|
647
|
+
short_name: NL
|
648
|
+
version: "2.3"
|
649
|
+
engine: NetFront
|
650
|
+
-
|
651
|
+
user_agent: Mozilla/5.0 (Series40; Nokia306/03.63; Profile/MIDP-2.1 Configuration/CLDC-1.1) Gecko/20100401 S40OviBrowser/3.9.0.0.22
|
652
|
+
client:
|
653
|
+
type: browser
|
654
|
+
name: Nokia Ovi Browser
|
655
|
+
short_name: NV
|
656
|
+
version: "3.9.0.0.22"
|
657
|
+
engine: Gecko
|
658
|
+
-
|
659
|
+
user_agent: SAMSUNG-SGH-A737/UCHD2 SHP/VPP/R5 NetFront/3.4 SMM-MMS/1.2.0 profile/MIDP-2.0 configuration/CLDC-1.1
|
660
|
+
client:
|
661
|
+
type: browser
|
662
|
+
name: NetFront
|
663
|
+
short_name: NF
|
664
|
+
version: "3.4"
|
665
|
+
engine: NetFront
|
666
|
+
-
|
667
|
+
user_agent: Mozilla/3.0 (compatible; NetPositive/2.2.1; BeOS)
|
668
|
+
client:
|
669
|
+
type: browser
|
670
|
+
name: NetPositive
|
671
|
+
short_name: NP
|
672
|
+
version: "2.2.1"
|
673
|
+
engine:
|
674
|
+
-
|
675
|
+
user_agent: Mozilla/5.0 (X11; U; Linux 2.4.2-2 i586; en-US; m18) Gecko/20010131 Netscape6/6.01
|
676
|
+
client:
|
677
|
+
type: browser
|
678
|
+
name: Netscape
|
679
|
+
short_name: NS
|
680
|
+
version: "6.01"
|
681
|
+
engine: Gecko
|
682
|
+
-
|
683
|
+
user_agent: Huawei/1.0/0HuaweiG2800/WAP2.0/Obigo-Browser/Q03C MMS/Obigo-MMS/1.2
|
684
|
+
client:
|
685
|
+
type: browser
|
686
|
+
name: Obigo
|
687
|
+
short_name: OB
|
688
|
+
version:
|
689
|
+
engine:
|
690
|
+
-
|
691
|
+
user_agent: Mozilla/5.0 (Macintosh; PowerPC MorphOS 3.7; Odyssey Web Browser; rv:1.23) AppleWebKit/538.1 (KHTML, like Gecko) OWB/1.23 Safari/538.1
|
692
|
+
client:
|
693
|
+
type: browser
|
694
|
+
name: Odyssey Web Browser
|
695
|
+
short_name: OD
|
696
|
+
version: 1.23
|
697
|
+
engine: WebKit
|
698
|
+
-
|
699
|
+
user_agent: Mozilla/4.7 (compatible; OffByOne; Windows 2000) Webster Pro V3.4
|
700
|
+
client:
|
701
|
+
type: browser
|
702
|
+
name: Off By One
|
703
|
+
short_name: OF
|
704
|
+
version:
|
705
|
+
engine:
|
706
|
+
-
|
707
|
+
user_agent: UCWEB/2.0 (Linux; U; Opera Mini/7.1.32052/30.3697; en-US; GT-S6812) U2/1.0.0 UCBrowser/9.0.0.366 Mobile
|
708
|
+
client:
|
709
|
+
type: browser
|
710
|
+
name: Opera Mini
|
711
|
+
short_name: OI
|
712
|
+
version: "7.1.32052"
|
713
|
+
engine: Presto
|
714
|
+
-
|
715
|
+
user_agent: Mozilla/5.0 (Linux; Android 4.0.3; HTC EVO 3D X515m Build/IML74K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.63 Mobile Safari/537.36 OPR/15.0.1162.61541
|
716
|
+
client:
|
717
|
+
type: browser
|
718
|
+
name: Opera Mobile
|
719
|
+
short_name: OM
|
720
|
+
version: "15.0.1162.61541"
|
721
|
+
engine: Blink
|
722
|
+
-
|
723
|
+
user_agent: Opera/9.80 (X11; Linux zbov) Presto/2.11.355 Version/12.10
|
724
|
+
client:
|
725
|
+
type: browser
|
726
|
+
name: Opera
|
727
|
+
short_name: OP
|
728
|
+
version: "12.10"
|
729
|
+
engine: Presto
|
730
|
+
-
|
731
|
+
user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 1091) AppleWebKit/537.36 (KHTML like Gecko) Chrome/33.0.1750.91 Safari/537.36 OPR/20.0.1387.37 (Edition Next)
|
732
|
+
client:
|
733
|
+
type: browser
|
734
|
+
name: Opera Next
|
735
|
+
short_name: 'ON'
|
736
|
+
version: "20.0.1387.37"
|
737
|
+
engine: Blink
|
738
|
+
-
|
739
|
+
user_agent: 'Mozilla/1.10 [en] (Compatible; RISC OS 3.70; Oregano 1.10)'
|
740
|
+
client:
|
741
|
+
type: browser
|
742
|
+
name: Oregano
|
743
|
+
short_name: OR
|
744
|
+
version: "1.10"
|
745
|
+
engine:
|
746
|
+
-
|
747
|
+
user_agent: pcdc751/1.0 UP.Browser/6.2.3.2 (GUI) MMP/2.0
|
748
|
+
client:
|
749
|
+
type: browser
|
750
|
+
name: Openwave Mobile Browser
|
751
|
+
short_name: OV
|
752
|
+
version: "6.2.3.2"
|
753
|
+
engine:
|
754
|
+
-
|
755
|
+
user_agent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1; en-US) AppleWebKit/9537.73.11 (KHTML, like Gecko) Version/7.0 Safari/537.71 OmniWeb/v624.0'
|
756
|
+
client:
|
757
|
+
type: browser
|
758
|
+
name: OmniWeb
|
759
|
+
short_name: OW
|
760
|
+
version: "624.0"
|
761
|
+
engine: WebKit
|
762
|
+
-
|
763
|
+
user_agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/Palm-D050; Blazer/4.3) 16;320x320
|
764
|
+
client:
|
765
|
+
type: browser
|
766
|
+
name: Palm Blazer
|
767
|
+
short_name: PL
|
768
|
+
version: "4.3"
|
769
|
+
engine:
|
770
|
+
-
|
771
|
+
user_agent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:24.0) Gecko/20140129 Firefox/24.0 PaleMoon/24.3.1
|
772
|
+
client:
|
773
|
+
type: browser
|
774
|
+
name: Pale Moon
|
775
|
+
short_name: PM
|
776
|
+
version: "24.3.1"
|
777
|
+
engine: Gecko
|
778
|
+
-
|
779
|
+
user_agent: Mozilla/5.0 (webOS/1.0; U; en-US) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/1.0 Safari/525.27.1 Pre/1.0
|
780
|
+
client:
|
781
|
+
type: browser
|
782
|
+
name: Palm Pre
|
783
|
+
short_name: PR
|
784
|
+
version: "1.0"
|
785
|
+
engine: WebKit
|
786
|
+
-
|
787
|
+
user_agent: 'Mozilla/5.0 (X11; U; Linux x86_64; fa-ir) AppleWebKit/534.35 (KHTML, like Gecko) Chrome/11.0.696.65 Safari/534.35 Puffin/2.10977AP'
|
788
|
+
client:
|
789
|
+
type: browser
|
790
|
+
name: Puffin
|
791
|
+
short_name: PU
|
792
|
+
version: "2.10977"
|
793
|
+
engine: WebKit
|
794
|
+
-
|
795
|
+
user_agent: Mozilla/4.76 (compatible; MSIE 6.0; U; Windows 95; PalmSource; PalmOS; WebPro; Tungsten Proxyless 1.1 320x320x16)
|
796
|
+
client:
|
797
|
+
type: browser
|
798
|
+
name: Palm WebPro
|
799
|
+
short_name: PW
|
800
|
+
version:
|
801
|
+
engine:
|
802
|
+
-
|
803
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2b) Gecko/20021029 Phoenix/0.4
|
804
|
+
client:
|
805
|
+
type: browser
|
806
|
+
name: Phoenix
|
807
|
+
short_name: PX
|
808
|
+
version: "0.4"
|
809
|
+
engine: Gecko
|
810
|
+
-
|
811
|
+
user_agent: Mozilla/4.0 (compatible; Polaris 6.2; Brew 3.1.5; en)/240X320 Samsung sam-r631
|
812
|
+
client:
|
813
|
+
type: browser
|
814
|
+
name: Polaris
|
815
|
+
short_name: PO
|
816
|
+
version: "6.2"
|
817
|
+
engine:
|
818
|
+
-
|
819
|
+
user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) rekonq/2.3.2 Safari/537.21
|
820
|
+
client:
|
821
|
+
type: browser
|
822
|
+
name: Rekonq
|
823
|
+
short_name: RK
|
824
|
+
version: "2.3.2"
|
825
|
+
engine: WebKit
|
826
|
+
-
|
827
|
+
user_agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) RockMelt/0.16.91.483 Chrome/16.0.912.77 Safari/535.7
|
828
|
+
client:
|
829
|
+
type: browser
|
830
|
+
name: RockMelt
|
831
|
+
short_name: RM
|
832
|
+
version: "0.16.91.483"
|
833
|
+
engine: WebKit
|
834
|
+
-
|
835
|
+
user_agent: Mozilla/5.0 (Maemo; Linux; U; Jolla; Sailfish; Mobile; rv:26.0) Gecko/26.0 Firefox/26.0 SailfishBrowser/1.0 like Safari/538.1
|
836
|
+
client:
|
837
|
+
type: browser
|
838
|
+
name: Sailfish Browser
|
839
|
+
short_name: SA
|
840
|
+
version: "1.0"
|
841
|
+
engine: Gecko
|
842
|
+
-
|
843
|
+
user_agent: Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; SV1; SE 2.x)
|
844
|
+
client:
|
845
|
+
type: browser
|
846
|
+
name: Sogou Explorer
|
847
|
+
short_name: SE
|
848
|
+
version: "2"
|
849
|
+
engine:
|
850
|
+
-
|
851
|
+
user_agent: Safari/9537.73.11 CFNetwork/673.0.3 Darwin/13.0.0 (x86_64) (MacBookAir6%2C2)
|
852
|
+
client:
|
853
|
+
type: browser
|
854
|
+
name: Safari
|
855
|
+
short_name: SF
|
856
|
+
version:
|
857
|
+
engine: WebKit
|
858
|
+
-
|
859
|
+
user_agent: CELKON.C64/R2AE SEMC-Browser/4.0.3 Profile/MIDP-2.0 Configuration/CLDC-1.1
|
860
|
+
client:
|
861
|
+
type: browser
|
862
|
+
name: SEMC-Browser
|
863
|
+
short_name: SC
|
864
|
+
version: "4.0.3"
|
865
|
+
engine:
|
866
|
+
-
|
867
|
+
user_agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko) Shiira/1.2.3 Safari/125
|
868
|
+
client:
|
869
|
+
type: browser
|
870
|
+
name: Shiira
|
871
|
+
short_name: SH
|
872
|
+
version: "1.2.3"
|
873
|
+
engine: WebKit
|
874
|
+
-
|
875
|
+
user_agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0; Sleipnir/2.9.18)
|
876
|
+
client:
|
877
|
+
type: browser
|
878
|
+
name: Sleipnir
|
879
|
+
short_name: SL
|
880
|
+
version: "2.9.18"
|
881
|
+
engine: Trident
|
882
|
+
-
|
883
|
+
user_agent: Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0 SeaMonkey/2.26a1 Lightning/3.1a1
|
884
|
+
client:
|
885
|
+
type: browser
|
886
|
+
name: SeaMonkey
|
887
|
+
short_name: SM
|
888
|
+
version: "2.26"
|
889
|
+
engine: Gecko
|
890
|
+
-
|
891
|
+
user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) Snowshoe/1.0.0 Safari/537.21
|
892
|
+
client:
|
893
|
+
type: browser
|
894
|
+
name: Snowshoe
|
895
|
+
short_name: SN
|
896
|
+
version: "1.0.0"
|
897
|
+
engine: WebKit
|
898
|
+
-
|
899
|
+
user_agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/125.5.7 (KHTML, like Gecko) SunriseBrowser/0.833
|
900
|
+
client:
|
901
|
+
type: browser
|
902
|
+
name: Sunrise
|
903
|
+
short_name: SR
|
904
|
+
version: "0.833"
|
905
|
+
engine: WebKit
|
906
|
+
-
|
907
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1) Gecko/20061024 Firefox/2.0 (Swiftfox)
|
908
|
+
client:
|
909
|
+
type: browser
|
910
|
+
name: Swiftfox
|
911
|
+
short_name: SX
|
912
|
+
version: "2.0"
|
913
|
+
engine: Gecko
|
914
|
+
-
|
915
|
+
user_agent: Mozilla/5.0 (Linux; U; Tizen/1.0 like Android; en-us; AppleWebKit/534.46 (KHTML, like Gecko) Tizen Browser/1.0 Mobile
|
916
|
+
client:
|
917
|
+
type: browser
|
918
|
+
name: Tizen Browser
|
919
|
+
short_name: TZ
|
920
|
+
version: "1.0"
|
921
|
+
engine: WebKit
|
922
|
+
-
|
923
|
+
user_agent: UCWEB/2.0 (Java; U; MIDP-2.0; fr-FR; ALCATEL_one_touch_585) U2/1.0.0 UCBrowser/9.4.1.377 U2/1.0.0 Mobile UNTRUSTED/1.0
|
924
|
+
client:
|
925
|
+
type: browser
|
926
|
+
name: UC Browser
|
927
|
+
short_name: UC
|
928
|
+
version: "9.4.1.377"
|
929
|
+
engine:
|
930
|
+
-
|
931
|
+
user_agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.114 Safari/537.36 Vivaldi/1.0.105.7
|
932
|
+
client:
|
933
|
+
type: browser
|
934
|
+
name: Vivaldi
|
935
|
+
short_name: VI
|
936
|
+
version: "1.0.105.7"
|
937
|
+
engine: Blink
|
938
|
+
-
|
939
|
+
user_agent: Mozilla/5.0 (compatible; U; Webpositive/533.4; Haiku) AppleWebkit/533.4 (KHTML, like gecko) Chrome/5.0.375.55 Safari/533.4
|
940
|
+
client:
|
941
|
+
type: browser
|
942
|
+
name: WebPositive
|
943
|
+
short_name: WE
|
944
|
+
version:
|
945
|
+
engine: WebKit
|
946
|
+
-
|
947
|
+
user_agent: Mozilla/5.0 (X11; U; Linux i686; de-DE) AppleWebKit/534.3 (KHML, like Gecko) WeTab-Browser Safari/534.3
|
948
|
+
client:
|
949
|
+
type: browser
|
950
|
+
name: WeTab Browser
|
951
|
+
short_name: WT
|
952
|
+
version:
|
953
|
+
engine: WebKit
|
954
|
+
-
|
955
|
+
user_agent: Mozilla/5.0 (webOS/1.4.5; U; ru-RU) AppleWebKit/532.2 (KHTML, like Gecko) Version/1.0 Safari/532.2 Pixi/1.0
|
956
|
+
client:
|
957
|
+
type: browser
|
958
|
+
name: wOSBrowser
|
959
|
+
short_name: WO
|
960
|
+
version: "1.4.5"
|
961
|
+
engine: WebKit
|
962
|
+
-
|
963
|
+
user_agent: Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 YaBrowser/13.10.1500.9323 Safari/537.36
|
964
|
+
client:
|
965
|
+
type: browser
|
966
|
+
name: Yandex Browser
|
967
|
+
short_name: YA
|
968
|
+
version: "13.10.1500.9323"
|
969
|
+
engine: Blink
|
970
|
+
-
|
971
|
+
user_agent: 'Xiino/1.0.9E [en] (v. 4.1; 153x130; g4)'
|
972
|
+
client:
|
973
|
+
type: browser
|
974
|
+
name: Xiino
|
975
|
+
short_name: XI
|
976
|
+
version: "1.0.9"
|
977
|
+
engine:
|
978
|
+
-
|
979
|
+
user_agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.48 Safari/537.36 QQBrowser/8.0.3197.400
|
980
|
+
client:
|
981
|
+
type: browser
|
982
|
+
name: QQ Browser
|
983
|
+
short_name: QQ
|
984
|
+
version: "8.0.3197.400"
|
985
|
+
engine: WebKit
|
986
|
+
|