market_bot 0.16.0 → 0.17.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 59cd879c52da9961e36e4ef57a63dc9713f024ca
4
- data.tar.gz: 7312a30bed4ab78a77560be7ab7551beb9be1e7a
3
+ metadata.gz: 7b9b827496e5425d3887b85c676d993abe3d0998
4
+ data.tar.gz: 1387fb5cf278a03a366120f96758623388a710db
5
5
  SHA512:
6
- metadata.gz: 91741e2d5550b7adfd1efdae920f4590a94502d1f03c2ebdc6b4fd06be2ffa8aa629a856e0157eb064233c33b3019e78a08885d7e9fcdf03d0e0a4eccfa4571f
7
- data.tar.gz: a1de07b3787e5665447739a72f8918c8031bf00381a953b55a2ae68024946362aa7266ad3643c57ceacaa4aba0c51aa234c42353b542df6ac2184c24fbe7a7d8
6
+ metadata.gz: 7aae31488f75f6c4c56fbc7d7e0bdf14a949dcf380d6de7a006024dd1e8b73e8f24c8ec118622932dbda16b8bcbd0147bbff129fc7c1db87b4c855ca58900d57
7
+ data.tar.gz: 17e6cb00e21febbca548e6a8d4750383890335d2d6d2e4204aebc456c2fe7ed0f509c9b71b471f2c31e45c5edb3158ddd1a1fd35aa912eb4ad76884db07f759e
@@ -2,13 +2,36 @@ module MarketBot
2
2
  module Android
3
3
 
4
4
  class App
5
- MARKET_ATTRIBUTES = [:title, :rating, :updated, :current_version, :requires_android,
6
- :category, :installs, :size, :price, :content_rating, :description,
7
- :votes, :developer, :more_from_developer, :users_also_installed,
8
- :related, :banner_icon_url, :banner_image_url, :website_url, :email,
9
- :youtube_video_ids, :screenshot_urls, :whats_new, :permissions,
10
- :rating_distribution, :html, :category_url, :full_screenshot_urls,
11
- :reviews]
5
+ MARKET_ATTRIBUTES = [
6
+ :title,
7
+ :rating,
8
+ :updated,
9
+ :current_version,
10
+ :requires_android,
11
+ :category,
12
+ :installs,
13
+ :size,
14
+ :price,
15
+ :content_rating,
16
+ :description,
17
+ :votes,
18
+ :developer,
19
+ :more_from_developer,
20
+ :users_also_installed,
21
+ :related,
22
+ :banner_icon_url,
23
+ :banner_image_url,
24
+ :website_url,
25
+ :email,
26
+ :screenshot_urls,
27
+ :whats_new,
28
+ :permissions,
29
+ :rating_distribution,
30
+ :html,
31
+ :category_url,
32
+ :full_screenshot_urls,
33
+ :reviews,
34
+ ]
12
35
 
13
36
  attr_reader :app_id
14
37
  attr_reader *MARKET_ATTRIBUTES
@@ -16,6 +39,7 @@ module MarketBot
16
39
  attr_reader :lang
17
40
  attr_reader :callback
18
41
  attr_reader :error
42
+ attr_reader :result
19
43
 
20
44
  def self.parse(html)
21
45
  result = {}
@@ -26,35 +50,35 @@ module MarketBot
26
50
  field_name = info.css('.title').text.strip
27
51
 
28
52
  case field_name
29
- when 'Updated'
30
- result[:updated] = info.css('.content').text.strip
31
- when 'Installs'
32
- result[:installs] = info.css('.content').text.strip
33
- when 'Size'
34
- result[:size] = info.css('.content').text.strip
35
- when 'Current Version'
36
- result[:current_version] = info.css('.content').text.strip
37
- when 'Requires Android'
38
- result[:requires_android] = info.css('.content').text.strip
39
- when 'Content Rating'
40
- result[:content_rating] = info.css('.content').text.strip
41
- when 'Contact Developer', 'Developer'
42
- info.css('.dev-link').each do |node|
43
- node_href = node[:href]
44
- if node_href =~ /^mailto:/
45
- result[:email] = node_href.gsub(/^mailto:/,'')
46
- else
47
- if q_param = URI(node_href).query.split('&').select{ |p| p =~ /q=/ }.first
48
- actual_url = q_param.gsub('q=', '')
49
- end
50
-
51
- result[:website_url] = actual_url
53
+ when 'Updated'
54
+ result[:updated] = info.css('.content').text.strip
55
+ when 'Installs'
56
+ result[:installs] = info.css('.content').text.strip
57
+ when 'Size'
58
+ result[:size] = info.css('.content').text.strip
59
+ when 'Current Version'
60
+ result[:current_version] = info.css('.content').text.strip
61
+ when 'Requires Android'
62
+ result[:requires_android] = info.css('.content').text.strip
63
+ when 'Contact Developer', 'Developer'
64
+ info.css('.dev-link').each do |node|
65
+ node_href = node[:href]
66
+ if node_href =~ /^mailto:/
67
+ result[:email] = node_href.gsub(/^mailto:/,'')
68
+ else
69
+ if q_param = URI(node_href).query.split('&').select{ |p| p =~ /q=/ }.first
70
+ actual_url = q_param.gsub('q=', '')
52
71
  end
72
+
73
+ result[:website_url] = actual_url
53
74
  end
75
+ end
54
76
 
55
77
  end
56
78
  end
57
79
 
80
+ result[:content_rating] = doc.css("div.content[itemprop='contentRating']").text
81
+
58
82
  node = doc.xpath("//meta[@itemprop='price']").first
59
83
  result[:price] = node[:content].strip rescue 'Free'
60
84
 
@@ -65,7 +89,7 @@ module MarketBot
65
89
  result[:category_url] = cat_name
66
90
 
67
91
  result[:description] = doc.xpath("//div[@itemprop='description']").first.inner_html.strip
68
- result[:title] = doc.xpath("//div[@itemprop='name']").first.text.strip
92
+ result[:title] = doc.css('div.id-app-title').text
69
93
 
70
94
  score = doc.css('.score-container').first
71
95
  unless score.nil?
@@ -97,26 +121,19 @@ module MarketBot
97
121
 
98
122
  node = doc.css('.cover-image').first
99
123
  unless node.nil?
100
- result[:banner_icon_url] = node[:src]
101
- result[:banner_image_url] = node[:src]
102
- end
103
-
104
- result[:youtube_video_ids] = []
105
- doc.css('.play-action-container').each do |node|
106
- url = node['data-video-url']
107
- unless url.nil?
108
- result[:youtube_video_ids] << url.split('embed/').last.split('?').first
109
- end
124
+ url = fix_content_url(node[:src])
125
+ result[:banner_icon_url] = url
126
+ result[:banner_image_url] = url
110
127
  end
111
128
 
112
129
  result[:screenshot_urls] = []
113
130
  doc.css('.screenshot').each do |node|
114
- result[:screenshot_urls] << node[:src]
131
+ result[:screenshot_urls] << fix_content_url(node[:src])
115
132
  end
116
133
 
117
134
  result[:full_screenshot_urls] = []
118
135
  doc.css('.full-screenshot').each do |node|
119
- result[:full_screenshot_urls] << node[:src]
136
+ result[:full_screenshot_urls] << fix_content_url(node[:src])
120
137
  end
121
138
 
122
139
  node = doc.css('.whatsnew').first
@@ -218,7 +235,11 @@ module MarketBot
218
235
  self
219
236
  end
220
237
 
221
- private
238
+ private
239
+
240
+ def self.fix_content_url(url)
241
+ url =~ /\A\/\// ? "https:#{url}" : url
242
+ end
222
243
 
223
244
  def handle_response(response)
224
245
  if response.success?
@@ -236,6 +257,8 @@ module MarketBot
236
257
 
237
258
  def update_callback(result)
238
259
  unless @error
260
+ @result = result
261
+
239
262
  MARKET_ATTRIBUTES.each do |a|
240
263
  attr_name = "@#{a}"
241
264
  attr_value = result[a]
@@ -245,8 +268,6 @@ module MarketBot
245
268
 
246
269
  @callback.call(self) if @callback
247
270
  end
248
-
249
271
  end
250
-
251
272
  end
252
273
  end
@@ -1,3 +1,3 @@
1
1
  module MarketBot
2
- VERSION = '0.16.0'
2
+ VERSION = '0.17.0'
3
3
  end
@@ -20,17 +20,16 @@ def check_getters(app)
20
20
  app.installs.should == '500 - 1,000'
21
21
  app.size.should == '9.0M'
22
22
  app.price.should == '0'
23
- app.content_rating.should == 'Everyone'
23
+ app.content_rating.should == 'Unrated'
24
24
  app.description.should =~ /^<div.*?>An action-packed blend of split-second skill and luck-based gameplay!/
25
- app.votes.should == '9'
25
+ app.votes.should == '11'
26
26
  app.more_from_developer.should == [{:app_id=>"com.bluefroggaming.ghost_chicken"}]
27
- app.users_also_installed.should == [{:app_id=>"com.mac.warzonepaid"}, {:app_id=>"com.caresilabs.wheeljoy.paid"}, {:app_id=>"com.blazingsoft.crosswolf"}, {:app_id=>"org.vladest.Popcorn"}, {:app_id=>"com.mtb.dds"}, {:app_id=>"com.hdl.datbom"}, {:app_id=>"cz.dejvice.rc.Marvin"}, {:app_id=>"com.spectaculator.spectaculator"}, {:app_id=>"com.seleuco.xpectrum"}, {:app_id=>"app.usp"}, {:app_id=>"com.fms.speccy"}, {:app_id=>"com.reynoldssoft.sampler"}, {:app_id=>"com.dylanpdx.blockybird"}]
28
- app.related.should == [{:app_id=>"com.mac.warzonepaid"}, {:app_id=>"com.caresilabs.wheeljoy.paid"}, {:app_id=>"com.blazingsoft.crosswolf"}, {:app_id=>"org.vladest.Popcorn"}, {:app_id=>"com.mtb.dds"}, {:app_id=>"com.hdl.datbom"}, {:app_id=>"cz.dejvice.rc.Marvin"}, {:app_id=>"com.spectaculator.spectaculator"}, {:app_id=>"com.seleuco.xpectrum"}, {:app_id=>"app.usp"}, {:app_id=>"com.fms.speccy"}, {:app_id=>"com.reynoldssoft.sampler"}, {:app_id=>"com.dylanpdx.blockybird"}]
27
+ app.users_also_installed.should == [{:app_id=>"si.custom.snake"}]
28
+ app.related.should == [{:app_id=>"si.custom.snake"}]
29
29
  app.banner_icon_url.should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
30
30
  app.banner_image_url.should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
31
31
  app.website_url.should == 'http://bluefroggaming.com'
32
32
  app.email.should == 'support@hdgames.zendesk.com'
33
- app.youtube_video_ids.should == []
34
33
  app.screenshot_urls.should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310"]
35
34
  app.full_screenshot_urls.should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900"]
36
35
  app.whats_new.should == nil
@@ -38,7 +37,7 @@ def check_getters(app)
38
37
  # Stubbing out for now, can't find them in the redesigned page.
39
38
  app.permissions.should == []
40
39
 
41
- app.rating_distribution.should == {5=>8, 4=>0, 3=>0, 2=>1, 1=>0}
40
+ app.rating_distribution.should == {5=>10, 4=>0, 3=>0, 2=>1, 1=>0}
42
41
  app.html.class.should == String
43
42
  end
44
43
  end
@@ -75,21 +74,20 @@ describe 'App' do
75
74
  result[:installs].should == '500 - 1,000'
76
75
  result[:size].should == '9.0M'
77
76
  result[:price].should == '0'
78
- result[:content_rating].should == 'Everyone'
77
+ result[:content_rating].should == 'Unrated'
79
78
  result[:description].should =~ /An action-packed blend of split-second/
80
- result[:votes].should == '9'
79
+ result[:votes].should == '11'
81
80
  result[:developer].should == 'Blue Frog Gaming'
82
81
  result[:banner_icon_url].should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
83
82
  result[:website_url].should == 'http://bluefroggaming.com'
84
83
  result[:email].should == 'support@hdgames.zendesk.com'
85
- result[:youtube_video_ids].should == []
86
84
  result[:screenshot_urls].should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310"]
87
- result[:full_screenshot_urls].should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900"]
85
+ result[:full_screenshot_urls].should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900"]
88
86
  result[:whats_new].should == nil
89
87
  #result[:permissions].should == [{:security=>"dangerous", :group=>"Network communication", :description=>"full Internet access", :description_full=>"Allows the app to create network sockets."}, {:security=>"dangerous", :group=>"Phone calls", :description=>"read phone state and identity", :description_full=>"Allows the app to access the phone features of the device. An app with this permission can determine the phone number and serial number of this phone, whether a call is active, the number that call is connected to and the like."}, {:security=>"safe", :group=>"Network communication", :description=>"view network state", :description_full=>"Allows the app to view the state of all networks."}]
90
88
  # Stubbing out for now, can't find them in the redesigned page.
91
89
  result[:permissions].should == []
92
- result[:rating_distribution].should == {5=>8, 4=>0, 3=>0, 2=>1, 1=>0}
90
+ result[:rating_distribution].should == {5=>10, 4=>0, 3=>0, 2=>1, 1=>0}
93
91
  result[:html].should == test_src_data
94
92
 
95
93
  result
@@ -98,32 +96,31 @@ describe 'App' do
98
96
  it 'should populate a hash with the correct keys/values' do
99
97
  result = App.parse(test_src_data2)
100
98
 
101
- result[:title].should == 'Evernote'
99
+ result[:title].should == 'Evernote - stay organized.'
102
100
  result[:rating].should == '4.6'
103
- result[:updated].should == 'November 26, 2014'
101
+ result[:updated].should == 'May 5, 2016'
104
102
  result[:current_version].should == 'Varies with device'
105
103
  result[:requires_android].should == 'Varies with device'
106
104
  result[:category].should == 'Productivity'
107
105
  result[:category_url].should == 'PRODUCTIVITY'
108
106
  result[:size].should == 'Varies with device'
109
107
  result[:price].should == '0'
110
- result[:content_rating].should == 'Low Maturity'
108
+ result[:content_rating].should == 'Everyone'
111
109
  result[:description].should =~ /New York Times/
112
- result[:votes].should == '1134111'
110
+ result[:votes].should == '1390801'
113
111
  result[:developer].should == 'Evernote Corporation'
114
- result[:installs].should == '50,000,000 - 100,000,000'
115
- result[:banner_icon_url].should == 'https://lh5.ggpht.com/u_ZwBnOs3s7nHA2v4XDCrJknAAVVHQIzK4mVF8tbx1n62-_LrDSopwHviqeNuDIFigc=w300'
116
- result[:banner_image_url].should == 'https://lh5.ggpht.com/u_ZwBnOs3s7nHA2v4XDCrJknAAVVHQIzK4mVF8tbx1n62-_LrDSopwHviqeNuDIFigc=w300'
112
+ result[:installs].should == "100,000,000 - 500,000,000"
113
+ result[:banner_icon_url].should == 'https://lh3.googleusercontent.com/atqaMgabx_ZXVi4AJUcDiHTy-G3nwMAGsjoCsfpebwPjXMV_QXTPefko7Wbwen-EnUo=w300'
114
+ result[:banner_image_url].should == 'https://lh3.googleusercontent.com/atqaMgabx_ZXVi4AJUcDiHTy-G3nwMAGsjoCsfpebwPjXMV_QXTPefko7Wbwen-EnUo=w300'
117
115
  result[:website_url].should == 'http://evernote.com/privacy/'
118
116
  result[:email].should == 'appstore-evernote-android@evernote.com'
119
- result[:youtube_video_ids].should == ['UnpUIVO8Lmo']
120
- result[:screenshot_urls].should == ["https://lh5.ggpht.com/PVFHj_lDlc52wwNu0by2CLmUrSHaAx6NINjbe9qmk-NPo-S5UUA8oghVARMBHEWgXDU=h310", "https://lh5.ggpht.com/KvbOit3FFnfbOZ6rG23sDEVuC4ALtLGV0Q0zwu6vMKDCO4u69_zI-IhmD3jOGuJLEj4=h310", "https://lh5.ggpht.com/TEWuyLgIH6_514_1xpcqpcjFPSxu82Sak2RPuwbtexRqe-kJuW81DF5IRdS4Lis1KJQ=h310", "https://lh4.ggpht.com/KeGMsBnchmH9gywdjA1x7fqUpQX0UrMA_cMZbvr2hYHLiYTsCKOescqniEO4DItuHxU=h310", "https://lh5.ggpht.com/zWJ3VVV-sjT0mSADljAMyecO3QmcoFBtLBs8bETznU49X8avDRv3_iF5TkJkzVlu8qU=h310", "https://lh5.ggpht.com/3DqrNu-AHqGQQTDper8eTzpm9XEUNq605BxNSCkx4yGopa9u0TD2jBPHXdgwEPp08A=h310", "https://lh6.ggpht.com/9h0D2tvXlf6oLsylnNaaSdxjmm6rJuWeHvML-8zg5xoTp4akAjSXRCylxvF_dNTfoTU=h310", "https://lh5.ggpht.com/ugk2h_v0RrvAdzL7FfqD4jBONrfzboL6eAuFmkqvWg7zQiJUvkz6GThCU5pnKzCmRA=h310", "https://lh4.ggpht.com/3QUx47b-R9ex02vhUDH8h2hN3VDgS7e7rNAP7JCPaxaXr-GClb7jsZEsAyIr5iiwzw=h310", "https://lh5.ggpht.com/1LW-N8yEdwS1s-ZuvQSzqNMLaLldL8wBdLHhDY9TvPV8NnxBWIUjVaDZuat8I7V5uh4=h310", "https://lh4.ggpht.com/hIueHCJKvvAUrTrQQSSv6-2zpKMV-fdTIITHhMGfrulky5fEAR6KM1cpyUFD_9_kqw=h310", "https://lh4.ggpht.com/l-rQJVY9d2ZYZXWXnKfLUkTk6gGCE79Xopb__YlFeVZ974PBgfF4lK8olU67TvK3-g=h310", "https://lh4.ggpht.com/Q_2sTO9l0OIdDv801S2mlJI-vugeKROHHyPcWf7Hvavs5d-MU2v2RWS6sUOrF79gH1Hn=h310", "https://lh5.ggpht.com/1O17OJEpW3qZcyEyfljRcIHUIIAOiBlCc5SxHPghyv0evV4h2g-ZooBAL3xkog-kZYU=h310", "https://lh6.ggpht.com/nyn0trJ4OTdpb3SkH7ItJu8W4DdFNNW9P2AAr0OBA9q0H7y8KLxtc144tlSZXQIVKjE=h310", "https://lh6.ggpht.com/Yo4DN_K0v27ltrEEmJxI9XHn_BtGIgH6kLkxG3hG8Q0PeCJPpDv0FzDXLxbK2gkx0wY=h310"]
121
- result[:full_screenshot_urls].should == ["https://lh5.ggpht.com/PVFHj_lDlc52wwNu0by2CLmUrSHaAx6NINjbe9qmk-NPo-S5UUA8oghVARMBHEWgXDU=h900", "https://lh5.ggpht.com/KvbOit3FFnfbOZ6rG23sDEVuC4ALtLGV0Q0zwu6vMKDCO4u69_zI-IhmD3jOGuJLEj4=h900", "https://lh5.ggpht.com/TEWuyLgIH6_514_1xpcqpcjFPSxu82Sak2RPuwbtexRqe-kJuW81DF5IRdS4Lis1KJQ=h900", "https://lh4.ggpht.com/KeGMsBnchmH9gywdjA1x7fqUpQX0UrMA_cMZbvr2hYHLiYTsCKOescqniEO4DItuHxU=h900", "https://lh5.ggpht.com/zWJ3VVV-sjT0mSADljAMyecO3QmcoFBtLBs8bETznU49X8avDRv3_iF5TkJkzVlu8qU=h900", "https://lh5.ggpht.com/3DqrNu-AHqGQQTDper8eTzpm9XEUNq605BxNSCkx4yGopa9u0TD2jBPHXdgwEPp08A=h900", "https://lh6.ggpht.com/9h0D2tvXlf6oLsylnNaaSdxjmm6rJuWeHvML-8zg5xoTp4akAjSXRCylxvF_dNTfoTU=h900", "https://lh5.ggpht.com/ugk2h_v0RrvAdzL7FfqD4jBONrfzboL6eAuFmkqvWg7zQiJUvkz6GThCU5pnKzCmRA=h900", "https://lh4.ggpht.com/3QUx47b-R9ex02vhUDH8h2hN3VDgS7e7rNAP7JCPaxaXr-GClb7jsZEsAyIr5iiwzw=h900", "https://lh5.ggpht.com/1LW-N8yEdwS1s-ZuvQSzqNMLaLldL8wBdLHhDY9TvPV8NnxBWIUjVaDZuat8I7V5uh4=h900", "https://lh4.ggpht.com/hIueHCJKvvAUrTrQQSSv6-2zpKMV-fdTIITHhMGfrulky5fEAR6KM1cpyUFD_9_kqw=h900", "https://lh4.ggpht.com/l-rQJVY9d2ZYZXWXnKfLUkTk6gGCE79Xopb__YlFeVZ974PBgfF4lK8olU67TvK3-g=h900", "https://lh4.ggpht.com/Q_2sTO9l0OIdDv801S2mlJI-vugeKROHHyPcWf7Hvavs5d-MU2v2RWS6sUOrF79gH1Hn=h900", "https://lh5.ggpht.com/1O17OJEpW3qZcyEyfljRcIHUIIAOiBlCc5SxHPghyv0evV4h2g-ZooBAL3xkog-kZYU=h900", "https://lh6.ggpht.com/nyn0trJ4OTdpb3SkH7ItJu8W4DdFNNW9P2AAr0OBA9q0H7y8KLxtc144tlSZXQIVKjE=h900", "https://lh6.ggpht.com/Yo4DN_K0v27ltrEEmJxI9XHn_BtGIgH6kLkxG3hG8Q0PeCJPpDv0FzDXLxbK2gkx0wY=h900"]
117
+ result[:screenshot_urls].should == ["https://lh3.googleusercontent.com/AkEKnkvCyM6e-FS5RT5DExb56uCUDc1S0cc3sI4IORrJAT-HTLQz-jPu8whw-BL5oA=h310", "https://lh3.googleusercontent.com/qGb8MRDdS4T5pCepmVDWUy7si-fNddvsGLaF3rPYXlB89FjYa_on4VBp-8xPIKq5Qk9C=h310", "https://lh3.googleusercontent.com/N2IqJKGd9-pgW0HgRQhoSA9UNXZFV4OYVIv7l8mhyNmZESVGEywiXviU4OoMbeDqPg=h310", "https://lh3.googleusercontent.com/FfN8xU2ePAfgOCWIyBf-qkYKWk-ALKOwq0Y3F65NutRLF6YrrV-K2udP6xXP2k5PIRE=h310", "https://lh3.googleusercontent.com/9npD1H7xz7NwtyfM9cCOTaYSpqaXQMAWJGYh13q4_F1Kz1TfyWkz9ba0yWc6r6Wwbi8=h310", "https://lh3.googleusercontent.com/InW32sC2LFGHK3gqMT4rTYvu0XqR3ZBPE21Gsp2HAu3O5ilYG1Gi2t3klF_8_OPwQYM=h310", "https://lh3.googleusercontent.com/FX59DjcMqjEj01oGatPAQPZxXuD8A8xVYtpeArc1ECRcLueVJNHykTKw4TgnJSMPpzI=h310", "https://lh3.googleusercontent.com/fYrp0ou-qf5P-LXmUx6w54buL_WO3P4zaa68ULGP98zQirZr68PDdICQfq8bxmRoAA=h310", "https://lh3.googleusercontent.com/fg_VM5xXZqfr8npJm7Cc64Tf5N2Pb-lNkt88y2kjb_gObfXh1vbB9LA_jFYpyi2nxvFa=h310", "https://lh3.googleusercontent.com/-sYE4X1Ua6hM0TwBeZJf6OqT-8OZTI8lZx9TEbgnBlpIdoomaBORAoOqYii2a7FV6g=h310", "https://lh3.googleusercontent.com/pI8Gcd_S3gyVRlztODJ8rdZYD6sD1k36tbrvd4yY0n3vCU6_GCKIn-XyNiE3l1oDf-A=h310", "https://lh3.googleusercontent.com/GoDuyxtSwVzL6GAtT8O9JzV2ulaOFbUTHV0fQtMCrpLrxek4dsUzahnPs0eAd0-YC05z=h310", "https://lh3.googleusercontent.com/pGAi_1d2FlXhwJggTJFm_23pmhRmiGdBngjxmIiHUAwFYzrPizkZyxE7Srq_WzBs-Fpy=h310", "https://lh3.googleusercontent.com/85hsOFhv0fTSTxLmgRTEIdg5m8jFFnbMVcwWKzkeHxQ7MxaTpvdBkEcobteiEnZbGwI=h310", "https://lh3.googleusercontent.com/yNsucoQ93ZCDHSocqcPbvKL9J1KHruCvkzgpbqZwoXFX_cWQsHc81PR2kNemT6hBlw=h310", "https://lh3.googleusercontent.com/aIOqnxGnBOrJGqrSNFpay91nRdwcDXjbX1iQiY4Oepf3VUwqxFyCgD6GKauJ5LD0VA=h310", "https://lh3.googleusercontent.com/Ve7cJfhPpwMxeK350SAfYqCX9wbjdvtTgFb51cJI_IIBy-ciqrSh12XA3BAB-zWmaX4=h310", "https://lh3.googleusercontent.com/JKxZgzgcMX6B2UjuwHU3fFH20aqM6oBjdaugW_NRPinu1VL28Zsb0tOFmRLcg3hI2U8=h310", "https://lh3.googleusercontent.com/Y5V6rb-0fib5I4hufNdY5sSUE_ygvQNy2KO-PcGAR2xh5ciPrcbc3yLoWe-2blIQvw=h310", "https://lh3.googleusercontent.com/Onf1DjVvgdpmue7R8TtZ56wM3SNOD_VCxGshZX1hPnLHpMA7l6n3fQWXva7U7qjdy5ya=h310", "https://lh3.googleusercontent.com/gZCFLqggz9SCqzObmTQw_xXfBv9N7iXiEqUp2iHYwaqFBmpmgTYOaRllCF5VVGLkg0g=h310", "https://lh3.googleusercontent.com/VAYeCD2aIkR-EcF1-48ViOg0ZdYVAC-YU3wIVnDkp7GtxZh3tnv7rDRh_Fvtj-jM098g=h310", "https://lh3.googleusercontent.com/yj50UFheAT_1ZOvZGUOs8VjL6499391RB_x5LUNfpPW2enUcm_Lt95Bcih_AJ8VzpHI=h310", "https://lh3.googleusercontent.com/JO_h9TGYQOqyzCLhIWlLVkzF2DZc1Ib1kIOxg0WVIcH0tOuKPLQApxMxTywChqCa2A=h310"]
118
+ result[:full_screenshot_urls].should == ["https://lh3.googleusercontent.com/AkEKnkvCyM6e-FS5RT5DExb56uCUDc1S0cc3sI4IORrJAT-HTLQz-jPu8whw-BL5oA=h900", "https://lh3.googleusercontent.com/qGb8MRDdS4T5pCepmVDWUy7si-fNddvsGLaF3rPYXlB89FjYa_on4VBp-8xPIKq5Qk9C=h900", "https://lh3.googleusercontent.com/N2IqJKGd9-pgW0HgRQhoSA9UNXZFV4OYVIv7l8mhyNmZESVGEywiXviU4OoMbeDqPg=h900", "https://lh3.googleusercontent.com/FfN8xU2ePAfgOCWIyBf-qkYKWk-ALKOwq0Y3F65NutRLF6YrrV-K2udP6xXP2k5PIRE=h900", "https://lh3.googleusercontent.com/9npD1H7xz7NwtyfM9cCOTaYSpqaXQMAWJGYh13q4_F1Kz1TfyWkz9ba0yWc6r6Wwbi8=h900", "https://lh3.googleusercontent.com/InW32sC2LFGHK3gqMT4rTYvu0XqR3ZBPE21Gsp2HAu3O5ilYG1Gi2t3klF_8_OPwQYM=h900", "https://lh3.googleusercontent.com/FX59DjcMqjEj01oGatPAQPZxXuD8A8xVYtpeArc1ECRcLueVJNHykTKw4TgnJSMPpzI=h900", "https://lh3.googleusercontent.com/fYrp0ou-qf5P-LXmUx6w54buL_WO3P4zaa68ULGP98zQirZr68PDdICQfq8bxmRoAA=h900", "https://lh3.googleusercontent.com/fg_VM5xXZqfr8npJm7Cc64Tf5N2Pb-lNkt88y2kjb_gObfXh1vbB9LA_jFYpyi2nxvFa=h900", "https://lh3.googleusercontent.com/-sYE4X1Ua6hM0TwBeZJf6OqT-8OZTI8lZx9TEbgnBlpIdoomaBORAoOqYii2a7FV6g=h900", "https://lh3.googleusercontent.com/pI8Gcd_S3gyVRlztODJ8rdZYD6sD1k36tbrvd4yY0n3vCU6_GCKIn-XyNiE3l1oDf-A=h900", "https://lh3.googleusercontent.com/GoDuyxtSwVzL6GAtT8O9JzV2ulaOFbUTHV0fQtMCrpLrxek4dsUzahnPs0eAd0-YC05z=h900", "https://lh3.googleusercontent.com/pGAi_1d2FlXhwJggTJFm_23pmhRmiGdBngjxmIiHUAwFYzrPizkZyxE7Srq_WzBs-Fpy=h900", "https://lh3.googleusercontent.com/85hsOFhv0fTSTxLmgRTEIdg5m8jFFnbMVcwWKzkeHxQ7MxaTpvdBkEcobteiEnZbGwI=h900", "https://lh3.googleusercontent.com/yNsucoQ93ZCDHSocqcPbvKL9J1KHruCvkzgpbqZwoXFX_cWQsHc81PR2kNemT6hBlw=h900", "https://lh3.googleusercontent.com/aIOqnxGnBOrJGqrSNFpay91nRdwcDXjbX1iQiY4Oepf3VUwqxFyCgD6GKauJ5LD0VA=h900", "https://lh3.googleusercontent.com/Ve7cJfhPpwMxeK350SAfYqCX9wbjdvtTgFb51cJI_IIBy-ciqrSh12XA3BAB-zWmaX4=h900", "https://lh3.googleusercontent.com/JKxZgzgcMX6B2UjuwHU3fFH20aqM6oBjdaugW_NRPinu1VL28Zsb0tOFmRLcg3hI2U8=h900", "https://lh3.googleusercontent.com/Y5V6rb-0fib5I4hufNdY5sSUE_ygvQNy2KO-PcGAR2xh5ciPrcbc3yLoWe-2blIQvw=h900", "https://lh3.googleusercontent.com/Onf1DjVvgdpmue7R8TtZ56wM3SNOD_VCxGshZX1hPnLHpMA7l6n3fQWXva7U7qjdy5ya=h900", "https://lh3.googleusercontent.com/gZCFLqggz9SCqzObmTQw_xXfBv9N7iXiEqUp2iHYwaqFBmpmgTYOaRllCF5VVGLkg0g=h900", "https://lh3.googleusercontent.com/VAYeCD2aIkR-EcF1-48ViOg0ZdYVAC-YU3wIVnDkp7GtxZh3tnv7rDRh_Fvtj-jM098g=h900", "https://lh3.googleusercontent.com/yj50UFheAT_1ZOvZGUOs8VjL6499391RB_x5LUNfpPW2enUcm_Lt95Bcih_AJ8VzpHI=h900", "https://lh3.googleusercontent.com/JO_h9TGYQOqyzCLhIWlLVkzF2DZc1Ib1kIOxg0WVIcH0tOuKPLQApxMxTywChqCa2A=h900"]
122
119
  result[:whats_new].should =~ /What's New/
123
120
  #result[:permissions].should == [{:security=>"dangerous", :group=>"Hardware controls", :description=>"record audio", :description_full=>"Allows the app to access the audio record path."}, {:security=>"dangerous", :group=>"Hardware controls", :description=>"take pictures and videos", :description_full=>"Allows the app to take pictures and videos with the camera. This allows the app at any time to collect images the camera is seeing."}, {:security=>"dangerous", :group=>"Your location", :description=>"coarse (network-based) location", :description_full=>"Access coarse location sources such as the cellular network database to determine an approximate tablet location, where available. Malicious apps may use this to determine approximately where you are. Access coarse location sources such as the cellular network database to determine an approximate phone location, where available. Malicious apps may use this to determine approximately where you are."}, {:security=>"dangerous", :group=>"Your location", :description=>"fine (GPS) location", :description_full=>"Access fine location sources such as the Global Positioning System on the tablet, where available. Malicious apps may use this to determine where you are, and may consume additional battery power. Access fine location sources such as the Global Positioning System on the phone, where available. Malicious apps may use this to determine where you are, and may consume additional battery power."}, {:security=>"dangerous", :group=>"Network communication", :description=>"full Internet access", :description_full=>"Allows the app to create network sockets."}, {:security=>"dangerous", :group=>"Your personal information", :description=>"read contact data", :description_full=>"Allows the app to read all of the contact (address) data stored on your tablet. Malicious apps may use this to send your data to other people. Allows the app to read all of the contact (address) data stored on your phone. Malicious apps may use this to send your data to other people."}, {:security=>"dangerous", :group=>"Your personal information", :description=>"read sensitive log data", :description_full=>"Allows the app to read from the system's various log files. This allows it to discover general information about what you are doing with the tablet, potentially including personal or private information. Allows the app to read from the system's various log files. This allows it to discover general information about what you are doing with the phone, potentially including personal or private information."}, {:security=>"dangerous", :group=>"Your personal information", :description=>"read calendar events plus confidential information", :description_full=>"Allows the app to read all calendar events stored on your tablet, including those of friends or coworkers. Malicious apps may extract personal information from these calendars without the owners' knowledge. Allows the app to read all calendar events stored on your phone, including those of friends or coworkers. Malicious apps may extract personal information from these calendars without the owners' knowledge."}, {:security=>"dangerous", :group=>"Phone calls", :description=>"read phone state and identity", :description_full=>"Allows the app to access the phone features of the device. An app with this permission can determine the phone number and serial number of this phone, whether a call is active, the number that call is connected to and the like."}, {:security=>"dangerous", :group=>"Storage", :description=>"modify/delete USB storage contents modify/delete SD card contents", :description_full=>"Allows the app to write to the USB storage. Allows the app to write to the SD card."}, {:security=>"dangerous", :group=>"System tools", :description=>"prevent tablet from sleeping prevent phone from sleeping", :description_full=>"Allows the app to prevent the tablet from going to sleep. Allows the app to prevent the phone from going to sleep."}, {:security=>"safe", :group=>"Your accounts", :description=>"discover known accounts", :description_full=>"Allows the app to get the list of accounts known by the tablet. Allows the app to get the list of accounts known by the phone."}, {:security=>"safe", :group=>"Hardware controls", :description=>"control vibrator", :description_full=>"Allows the app to control the vibrator."}, {:security=>"safe", :group=>"Network communication", :description=>"view network state", :description_full=>"Allows the app to view the state of all networks."}, {:security=>"safe", :group=>"Network communication", :description=>"view Wi-Fi state", :description_full=>"Allows the app to view the information about the state of Wi-Fi."}, {:security=>"safe", :group=>"Default", :description=>"Market billing service", :description_full=>"Allows the user to purchase items through Market from within this application"}]
124
121
  # Stubbing out for now, can't find them in the redesigned page.
125
122
  result[:permissions].should == []
126
- result[:rating_distribution].should == {5=>833055, 4=>229395, 3=>39241, 2=>12003, 1=>20202}
123
+ result[:rating_distribution].should == {5=>1009112, 4=>280079, 3=>51367, 2=>17062, 1=>32966}
127
124
  result[:html].should == test_src_data2
128
125
  end
129
126
 
@@ -131,28 +128,27 @@ describe 'App' do
131
128
  result = App.parse(test_src_data3)
132
129
 
133
130
  result[:title].should == 'WeatherPro'
134
- result[:updated].should == 'October 1, 2014'
135
- result[:current_version].should == '3.5.2'
131
+ result[:updated].should == "March 4, 2016"
132
+ result[:current_version].should == "4.5.1"
136
133
  result[:requires_android].should == '2.3 and up'
137
134
  result[:category].should == 'Weather'
138
135
  result[:category_url].should == 'WEATHER'
139
- result[:size].should == '9.1M'
136
+ result[:size].should == '11M'
140
137
  result[:price].should == '$2.99'
141
- result[:content_rating].should == 'Low Maturity'
142
- result[:description].should =~ /^.*WeatherPro answers the question - what's the best Android Weather app/
138
+ result[:content_rating].should == 'Everyone'
139
+ result[:description].should =~ /^.*WeatherPro has been created by MeteoGroup,/
143
140
  result[:developer].should == 'MeteoGroup'
144
- result[:rating].should == "4.4"
145
- result[:votes].should == "32543"
141
+ result[:rating].should == '4.3'
142
+ result[:votes].should == '44121'
146
143
  result[:banner_icon_url].should == 'https://lh5.ggpht.com/gEwuqrqo9Hu2qRNfBi8bLs0XByBQEmhvBhyNXJLuPmrT47GNfljir8ddam-Plzhovrg=w300'
147
144
  result[:banner_image_url].should == 'https://lh5.ggpht.com/gEwuqrqo9Hu2qRNfBi8bLs0XByBQEmhvBhyNXJLuPmrT47GNfljir8ddam-Plzhovrg=w300'
148
145
  result[:website_url].should == 'http://www.meteogroup.com/en/gb/about-meteogroup/privacy-policy-and-cookies.html'
149
146
  result[:email].should == 'support@android.weatherpro.de'
150
- result[:youtube_video_ids].should == []
151
- result[:whats_new].should =~ /Access to WeatherPro app via car infotainment screen/
147
+ result[:whats_new].should =~ /We have fixed bugs which can be reported via our help center/
152
148
  #result[:permissions].should == [{:security=>"dangerous", :group=>"Your location", :description=>"fine (GPS) location", :description_full=>"Access fine location sources such as the Global Positioning System on the tablet, where available. Malicious apps may use this to determine where you are, and may consume additional battery power. Access fine location sources such as the Global Positioning System on the phone, where available. Malicious apps may use this to determine where you are, and may consume additional battery power."}, {:security=>"dangerous", :group=>"Network communication", :description=>"full Internet access", :description_full=>"Allows the app to create network sockets."}, {:security=>"safe", :group=>"Network communication", :description=>"view network state", :description_full=>"Allows the app to view the state of all networks."}]
153
149
  # Stubbing out for now, can't find them in the redesigned page.
154
150
  result[:permissions].should == []
155
- result[:rating_distribution].should == {5=>20184, 4=>8344, 3=>1749, 2=>801, 1=>1454}
151
+ result[:rating_distribution].should == {5=>26367, 4=>11216, 3=>2613, 2=>1455, 1=>2460}
156
152
  result[:html].should == test_src_data3
157
153
  end
158
154
 
@@ -165,7 +161,7 @@ describe 'App' do
165
161
 
166
162
  result[:related].first[:app_id].should == 'com.socialnmobile.dictapps.notepad.color.note'
167
163
  result[:users_also_installed].first[:app_id].should == 'com.socialnmobile.dictapps.notepad.color.note'
168
- result[:more_from_developer].first[:app_id].should == 'com.evernote.widget'
164
+ result[:more_from_developer].first[:app_id].should == 'com.evernote.wear'
169
165
  end
170
166
 
171
167
  it 'should populate the reviews' do
@@ -1,51 +1,63 @@
1
1
  <!doctype html>
2
- <html lang="en_US"><head><meta content="IE=10" http-equiv="X-UA-Compatible"><link href="/store/opensearch.xml?hl=en_US" rel="search" title="Google Play" type="application/opensearchdescription+xml"><meta content="PJKdyVFC5jlu_l8Wo_hirJkhs1cmitmn44fgpOc3zFc" name="google-site-verification"><style type="text/css">#gbar,#guser{font-size:13px;padding-top:0px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}</style><style type="text/css">@font-face {
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" lang="en_US"><head><script>(function(){window.latencyTrackerTimes={clientSideStartMs:Date.now()};})();</script><script>(function(){function _DumpException(b){window.console.error(b.stack)};var f=this,m=Date.now||function(){return+new Date};function aa(b,d){var a=["LOWLIFE_wizbind"],c=d||f;a[0]in c||!c.execScript||c.execScript("var "+a[0]);for(var e;a.length&&(e=a.shift());)a.length||void 0===b?c[e]?c=c[e]:c=c[e]={}:c[e]=b};function ba(b,d){if(null===d)return!1;if("contains"in b&&1==d.nodeType)return b.contains(d);if("compareDocumentPosition"in b)return b==d||!!(b.compareDocumentPosition(d)&16);for(;d&&b!=d;)d=d.parentNode;return d==b};var v={};function ca(b,d){return function(a){a||(a=window.event);return d.call(b,a)}}function y(b){b=b.target||b.srcElement;!b.getAttribute&&b.parentNode&&(b=b.parentNode);return b}var C="undefined"!=typeof navigator&&/Macintosh/.test(navigator.userAgent),da="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),ea={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1};function fa(){this._mouseEventsPrevented=!0}
3
+ var E={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,TAB:0,TREE:13,TREEITEM:13};function F(b){return(b.getAttribute("type")||b.tagName).toUpperCase()in ga}function G(b){return(b.getAttribute("type")||b.tagName).toUpperCase()in ha}
4
+ var ga={CHECKBOX:!0,OPTION:!0,RADIO:!0},ha={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0},ia={A:!0,AREA:!0,BUTTON:!0,DIALOG:!0,IMG:!0,INPUT:!0,LINK:!0,MENU:!0,OPTGROUP:!0,OPTION:!0,PROGRESS:!0,SELECT:!0,TEXTAREA:!0};function H(){this.j=[];this.a=[];this.c=[];this.i={};this.b=null;this.f=[]}var ja="undefined"!=typeof navigator&&/iPhone|iPad|iPod/.test(navigator.userAgent),I=String.prototype.trim?function(b){return b.trim()}:function(b){return b.replace(/^\s+/,"").replace(/\s+$/,"")},ka=/\s*;\s*/;function la(b,d){return function(a){var c;var e=d,n;if("click"==e&&(C&&a.metaKey||!C&&a.ctrlKey||2==a.which||null==a.which&&4==a.button||a.shiftKey))e="clickmod";else{var h;h=a.which||a.keyCode||a.key;da&&3==h&&(h=13);if(13!=h&&32!=h)h=!1;else{var l=y(a);n=(l.getAttribute("role")||l.type||l.tagName).toUpperCase();var g;(g="keydown"!=a.type)||("getAttribute"in l?(g=(l.getAttribute("role")||l.tagName).toUpperCase(),g=!G(l)&&("COMBOBOX"!=g||"INPUT"!=g)&&!l.isContentEditable):g=!1,g=!g);(g=g||a.ctrlKey||
5
+ a.shiftKey||a.altKey||a.metaKey||F(l)&&32==h)||((g=l.tagName in ea)||(g=l.getAttributeNode("tabindex"),g=null!=g&&g.specified),g=!(g&&!l.disabled));g?h=!1:(l="INPUT"!=l.tagName.toUpperCase()||l.type,g=!(n in E)&&13==h,h=(0==E[n]%h||g)&&!!l)}h&&(e="clickkey")}l=a.srcElement||a.target;h=J(e,a,l,"",null);var p;for(n=l;n&&n!=this;n=n.__owner||n.parentNode){p=c=n;g=e;var q=p.__jsaction;if(!q){var w=K(p,"jsaction");if(w){q=v[w];if(!q){for(var q={},A=w.split(ka),B=0,z=A?A.length:0;B<z;B++){var t=A[B];if(t){var u=
6
+ t.indexOf(":"),x=-1!=u,k=x?I(t.substr(0,u)):"click",t=x?I(t.substr(u+1)):t;q[k]=t}}v[w]=q}w=q;q={};for(k in w){A=q;B=k;b:if(z=w[k],!(0<=z.indexOf(".")))for(t=p;t;t=t.parentNode){u=t;x=u.__jsnamespace;void 0===x&&(x=K(u,"jsnamespace"),u.__jsnamespace=x);if(u=x){z=u+"."+z;break b}if(t==this)break}A[B]=z}p.__jsaction=q}else q=ma,p.__jsaction=q}"clickkey"==g?g="click":"click"!=g||q.click||(g="clickonly");p={h:g,action:q[g]||"",event:null,m:!1};if(p.m||p.action)break}p&&(h=J(p.h,p.event||a,l,p.action||
7
+ "",c,h.timeStamp));h&&"touchend"==h.eventType&&(h.event._preventMouseEvents=fa);if(p&&p.action){if(k="clickkey"==e)k=y(a),k=(k.type||k.tagName).toUpperCase(),(k=32==(a.which||a.keyCode||a.key)&&"CHECKBOX"!=k)||(k=y(a),n=(k.getAttribute("role")||k.tagName).toUpperCase(),k=k.tagName.toUpperCase()in ia&&"A"!=n&&!F(k)&&!G(k)||"BUTTON"==n);k&&(a.preventDefault?a.preventDefault():a.returnValue=!1);if("mouseenter"==e||"mouseleave"==e)if(k=a.relatedTarget,!("mouseover"==a.type&&"mouseenter"==e||"mouseout"==
8
+ a.type&&"mouseleave"==e)||k&&(k===c||ba(c,k)))h.action="",h.actionElement=null;else{var e={},r;for(r in a)"function"!==typeof a[r]&&"srcElement"!==r&&"target"!==r&&(e[r]=a[r]);e.type="mouseover"==a.type?"mouseenter":"mouseleave";e.target=e.srcElement=c;e.bubbles=!1;h.event=e;h.targetElement=c}}else h.action="",h.actionElement=null;c=h;b.b&&(r=J(c.eventType,c.event,c.targetElement,c.action,c.actionElement,c.timeStamp),"clickonly"==r.eventType&&(r.eventType="click"),b.b(r,!0));if(c.actionElement){"A"!=
9
+ c.actionElement.tagName||"click"!=c.eventType&&"clickmod"!=c.eventType||(a.preventDefault?a.preventDefault():a.returnValue=!1);if(b.b)b.b(c);else{var D;if((r=f.document)&&!r.createEvent&&r.createEventObject)try{D=r.createEventObject(a)}catch(ta){D=a}else D=a;c.event=D;b.f.push(c)}if("touchend"==c.event.type&&c.event._mouseEventsPrevented){a=c.event;for(var ua in a);m()}}}}function J(b,d,a,c,e,n){return{eventType:b,event:d,targetElement:a,action:c,actionElement:e,timeStamp:n||m()}}
10
+ function K(b,d){var a=null;"getAttribute"in b&&(a=b.getAttribute(d));return a}var ma={};function na(b,d){return function(a){var c=b,e=d,n=!1;"mouseenter"==c?c="mouseover":"mouseleave"==c&&(c="mouseout");if(a.addEventListener){if("focus"==c||"blur"==c||"error"==c||"load"==c)n=!0;a.addEventListener(c,e,n)}else a.attachEvent&&("focus"==c?c="focusin":"blur"==c&&(c="focusout"),e=ca(a,e),a.attachEvent("on"+c,e));return{h:c,g:e,l:n}}}
11
+ function L(b,d){if(!b.i.hasOwnProperty(d)){var a=la(b,d),c=na(d,a);b.i[d]=a;b.j.push(c);for(a=0;a<b.a.length;++a){var e=b.a[a];e.b.push(c.call(null,e.a))}"click"==d&&L(b,"keydown")}}H.prototype.g=function(b){return this.i[b]};function M(b){var d=N,a=b.a;ja&&(a.style.cursor="pointer");for(a=0;a<d.j.length;++a)b.b.push(d.j[a].call(null,b.a))}function O(){for(var b=P,d=oa,a=0;a<d.length;++a)if(d[a].a!=b.a&&pa(d[a].a,b.a))return!0;return!1}
12
+ function pa(b,d){for(;b!=d&&d.parentNode;)d=d.parentNode;return b==d};var qa=window,N=new H,ra=qa||window,sa=ra.document.documentElement,Q=new function(b){this.a=b;this.b=[]}(sa),R;a:{for(var S=0;S<N.a.length;S++)if(pa(N.a[S].a,sa)){R=!0;break a}R=!1}
13
+ if(R)N.c.push(Q);else{M(Q);N.a.push(Q);for(var oa=N.c.concat(N.a),T=[],U=[],V=0;V<N.a.length;++V){var P=N.a[V];if(O()){T.push(P);for(var W=P,X=0;X<W.b.length;++X){var Y=W.a,Z=W.b[X];Y.removeEventListener?Y.removeEventListener(Z.h,Z.g,Z.l):Y.detachEvent&&Y.detachEvent("on"+Z.h,Z.g)}W.b=[]}else U.push(P)}for(V=0;V<N.c.length;++V)P=N.c[V],O()?T.push(P):(U.push(P),M(P));N.a=U;N.c=T}L(N,"click");L(N,"focus");L(N,"focusin");L(N,"blur");L(N,"focusout");L(N,"keydown");L(N,"keypress");L(N,"mouseover");L(N,"mouseout");L(N,"mouseenter");L(N,"mouseleave");L(N,"submit");L(N,"change");L(N,"input");L(N,"keyup");L(N,"mousedown");L(N,"mouseup");L(N,"touchcancel");(function(b,d){aa({trigger:function(a){var c=b.g(a.type);c||(L(b,a.type),c=b.g(a.type));c.call((a.target||a.srcElement).ownerDocument.documentElement,a)},bind:function(a){b.b=a;b.f&&(0<b.f.length&&a(b.f),b.f=null)}},d)})(N,ra);})();</script><meta content="IE=10" http-equiv="X-UA-Compatible"><link href="/store/opensearch.xml?hl=en_US" rel="search" title="Google Play" type="application/opensearchdescription+xml"><link href="android-app://com.android.vending/https/play.google.com/store/apps/details?id=com.bluefroggaming.popdat" rel="alternate"><meta content="PJKdyVFC5jlu_l8Wo_hirJkhs1cmitmn44fgpOc3zFc" name="google-site-verification"><meta content="A6H2WZG5rRIUFFopIQcyPeabS5ffxhFlhTiyhzWGPRA" name="google-site-verification"><style type="text/css">#gbar,#guser{font-size:13px;padding-top:0px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}
14
+ </style><style type="text/css">@font-face {
3
15
  font-family: 'Roboto';
4
16
  font-style: normal;
5
17
  font-weight: 100;
6
- src: local('Roboto Thin'), local('Roboto-Thin'), url(//fonts.gstatic.com/s/roboto/v14/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
18
+ src: local('Roboto Thin'), local('Roboto-Thin'), url(//fonts.gstatic.com/s/roboto/v15/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
7
19
  }
8
20
  @font-face {
9
21
  font-family: 'Roboto';
10
22
  font-style: normal;
11
23
  font-weight: 300;
12
- src: local('Roboto Light'), local('Roboto-Light'), url(//fonts.gstatic.com/s/roboto/v14/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
24
+ src: local('Roboto Light'), local('Roboto-Light'), url(//fonts.gstatic.com/s/roboto/v15/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
13
25
  }
14
26
  @font-face {
15
27
  font-family: 'Roboto';
16
28
  font-style: normal;
17
29
  font-weight: 400;
18
- src: local('Roboto Regular'), local('Roboto-Regular'), url(//fonts.gstatic.com/s/roboto/v14/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
30
+ src: local('Roboto Regular'), local('Roboto-Regular'), url(//fonts.gstatic.com/s/roboto/v15/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
19
31
  }
20
32
  @font-face {
21
33
  font-family: 'Roboto';
22
34
  font-style: normal;
23
35
  font-weight: 500;
24
- src: local('Roboto Medium'), local('Roboto-Medium'), url(//fonts.gstatic.com/s/roboto/v14/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
36
+ src: local('Roboto Medium'), local('Roboto-Medium'), url(//fonts.gstatic.com/s/roboto/v15/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
25
37
  }
26
38
  @font-face {
27
39
  font-family: 'Roboto';
28
40
  font-style: normal;
29
41
  font-weight: 700;
30
- src: local('Roboto Bold'), local('Roboto-Bold'), url(//fonts.gstatic.com/s/roboto/v14/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
42
+ src: local('Roboto Bold'), local('Roboto-Bold'), url(//fonts.gstatic.com/s/roboto/v15/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
31
43
  }
32
44
  @font-face {
33
45
  font-family: 'Roboto';
34
46
  font-style: italic;
35
47
  font-weight: 100;
36
- src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//fonts.gstatic.com/s/roboto/v14/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
48
+ src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//fonts.gstatic.com/s/roboto/v15/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
37
49
  }
38
50
  @font-face {
39
51
  font-family: 'Roboto';
40
52
  font-style: italic;
41
53
  font-weight: 300;
42
- src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//fonts.gstatic.com/s/roboto/v14/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
54
+ src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//fonts.gstatic.com/s/roboto/v15/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
43
55
  }
44
56
  @font-face {
45
57
  font-family: 'Roboto';
46
58
  font-style: italic;
47
59
  font-weight: 400;
48
- src: local('Roboto Italic'), local('Roboto-Italic'), url(//fonts.gstatic.com/s/roboto/v14/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
60
+ src: local('Roboto Italic'), local('Roboto-Italic'), url(//fonts.gstatic.com/s/roboto/v15/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
49
61
  }
50
62
  @font-face {
51
63
  font-family: 'Roboto Slab';
@@ -71,29 +83,17 @@
71
83
  font-weight: 700;
72
84
  src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
73
85
  }
74
- </style><link rel="stylesheet" href="https://www.gstatic.com/play/store/web/css/566661591-lowlife_css_ltr.css">
75
- <link href="//ssl.gstatic.com/android/market_images/web/favicon.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Pop Dat - Android Apps on Google Play</title><meta content="An action-packed blend of split-second skill and luck-based gameplay! Set off consecutive chains of particles to rack up massive combos as the energy bar refills. Keep..." name="Description"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" rel="canonical"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" hreflang="x-default" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=af" hreflang="af" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=in" hreflang="in" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ms" hreflang="ms" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ca" hreflang="ca" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=cs" hreflang="cs" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=da" hreflang="da" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=de" hreflang="de" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=et" hreflang="et" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=en_GB" hreflang="en_GB" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=en" hreflang="en" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=es" hreflang="es" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=es_419" hreflang="es_419" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fil" hreflang="fil" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr" hreflang="fr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr_BE" hreflang="fr_BE" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr_CA" hreflang="fr_CA" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr_FR" hreflang="fr_FR" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hr" hreflang="hr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zu" hreflang="zu" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=it" hreflang="it" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sw" hreflang="sw" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=lv" hreflang="lv" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=lt" hreflang="lt" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hu" hreflang="hu" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=nl" hreflang="nl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=nl_BE" hreflang="nl_BE" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=nl_NL" hreflang="nl_NL" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=no" hreflang="no" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pl" hreflang="pl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pt_BR" hreflang="pt_BR" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pt_PT" hreflang="pt_PT" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ro" hreflang="ro" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sk" hreflang="sk" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sl" hreflang="sl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fi" hreflang="fi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sv" hreflang="sv" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=vi" hreflang="vi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=tr" hreflang="tr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=el" hreflang="el" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=be" hreflang="be" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=bg" hreflang="bg" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ru" hreflang="ru" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sr" hreflang="sr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=uk" hreflang="uk" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=am" hreflang="am" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hi" hreflang="hi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=th" hreflang="th" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ko" hreflang="ko" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_HK" hreflang="zh_HK" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ja" hreflang="ja" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_CN" hreflang="zh_CN" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_TW" hreflang="zh_TW" rel="alternate"></head><body class="no-focus-outline" data-page-server-cookie=""><div id=gbar><nobr><a class=gb1 href="https://www.google.com/webhp?tab=8w">Search</a> <a class=gb1 href="http://www.google.com/imghp?hl=en&tab=8i">Images</a> <a class=gb1 href="https://maps.google.com/maps?hl=en&tab=8l">Maps</a> <b class=gb1>Play</b> <a class=gb1 href="https://www.youtube.com/?tab=81">YouTube</a> <a class=gb1 href="https://news.google.com/nwshp?hl=en&tab=8n">News</a> <a class=gb1 href="https://mail.google.com/mail/?tab=8m">Gmail</a> <a class=gb1 href="https://drive.google.com/?tab=8o">Drive</a> <a class=gb1 style="text-decoration:none" href="http://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div><div style="position:fixed;top:-100000px;left:-100000px;opacity:0" id="offscreen-renderer"></div><div class="wrapper-with-footer" id="wrapper"><div style="display:block"> <div class="nav-container id-click-track hover-zone" style="visibility:hidden" data-server-cookie="CAMiGwgBEAAaFRITCg12ZXJ0aWNhbF9tZW51EBoYAA==" data-uitype="418"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav" role="navigation"> <li class="nav-list-item id-track-click apps" data-backend="3" data-server-cookie="CAQqBggDEAMoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change selected" href="/store/apps"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Apps </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="103"> <a class="library-link id-no-menu-change" href="/apps"> My apps </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/apps"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/category/GAME"> Games </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/collection/editors_choice"> Editors' Choice </a> </li> </ul> </li> <li class="nav-list-item id-track-click movies-tv" data-backend="4" data-server-cookie="CAQqBggDEAQoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/movies"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Movies & TV </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="105"> <a class="library-link id-no-menu-change" href="/movies"> My movies & TV </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/movies"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/MOVIE"> Movies </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/TV"> TV </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_movie_studios"> Studios </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_tv_networks"> Networks </a> </li> </ul> </li> <li class="nav-list-item id-track-click music" data-backend="2" data-server-cookie="CAQqBggDEAIoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/music"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Music </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="104"> <a class="library-link id-no-menu-change id-no-nav" href="/music?authuser"> My music </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/music"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click books" data-backend="1" data-server-cookie="CAQqBggDEAEoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/books"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Books </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="106"> <a class="library-link id-no-menu-change id-no-nav" href="/books"> My books </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/books"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/collection/promotion_1000568_txb_product"> Textbooks </a> </li> </ul> </li> <li class="nav-list-item id-track-click magazines" data-backend="6" data-server-cookie="CAQqBggDEAYoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/newsstand"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Newsstand </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link id-no-menu-change id-track-click" data-uitype="121" href="/newsstand"> My newsstand </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/newsstand"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click devices" data-backend="5" data-server-cookie="CAQqBggDEAUoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/devices"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Devices </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/devices"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click store" data-backend="0" data-server-cookie="CAQqBggDEAAoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Store </span> </span> </a> </li> <li class="store"> <ul class="sub-nav id-sub-nav-store"> <li class="secondary-sub-nav-option id-track-click" data-uitype="123"> <a class="sub-nav-link id-no-menu-change" href="/store/myplayactivity"> My Play activity </a> </li> <li class="secondary-sub-nav-option id-track-click" data-uitype="108"> <a class="sub-nav-link id-no-menu-change" href="/wishlist"> My wishlist </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen redeem-option id-track-click" data-uitype="109"> <button class="sub-nav-link id-no-menu-change id-no-nav"> Redeem </button> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click" data-uitype="125"> <a class="sub-nav-link id-no-menu-change id-no-nav" href="https://play.google.com/intl/en-US_us/about/giftcards"> Buy gift card </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click" data-uitype="128"> <button class="sub-nav-link id-no-menu-change topup-link"> Buy Google Play credit </button> </li> </ul> </li> </ul> </div> </div><div class="butterbar-container"><span id="butterbar"></span></div><div class="body-content-loading-overlay" style="display:none"><div class="body-content-loading-spinner"></div></div><script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/4021730603-jquery_js_compiled_jquery_js.js"></script>
76
- <script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/3182759948-initial_page_js_compiled_initial_page_js.js"></script>
77
- <script>initializeAppMenu();</script><div class="action-bar-container" role="navigation" jsl="$t t-NjQXl_7dol8;$x 0;"> <div class="action-bar-inner"> <div class="action-bar apps" jsl="$x 1;" jsan="7.action-bar,7.apps"> <div jsinstance="0" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;$t t-pZpp18oHJ6M;$x 0;" class="action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-Categories" aria-owns="action-dropdown-children-Categories" id="action-dropdown-parent-Categories" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title">Categories</span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="Categories" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-Categories" id="action-dropdown-children-Categories" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul jsl="$x 6;"> <li jsinstance="0" class="action-dropdown-outer-list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item"> <ul jsl="$x 8;$t t-ufnLPd03FBo;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;" style="display:none"> <a target="_blank" jsl="$x 2;" jsan="0.target"></a> </li> <li class="submenu-divider" jsl="$x 3;" style="display:none"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BOOKS_AND_REFERENCE" title="Books &amp; Reference" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Books &amp; Reference</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BUSINESS" title="Business" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Business</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMICS" title="Comics" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Comics</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMMUNICATION" title="Communication" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Communication</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/EDUCATION" title="Education" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Education</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/ENTERTAINMENT" title="Entertainment" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Entertainment</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FINANCE" title="Finance" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Finance</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/HEALTH_AND_FITNESS" title="Health &amp; Fitness" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Health &amp; Fitness</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIBRARIES_AND_DEMO" title="Libraries &amp; Demo" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Libraries &amp; Demo</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIFESTYLE" title="Lifestyle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Lifestyle</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WALLPAPER" title="Live Wallpaper" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Live Wallpaper</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDIA_AND_VIDEO" title="Media &amp; Video" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Media &amp; Video</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDICAL" title="Medical" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Medical</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MUSIC_AND_AUDIO" title="Music &amp; Audio" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music &amp; Audio</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/NEWS_AND_MAGAZINES" title="News &amp; Magazines" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">News &amp; Magazines</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PERSONALIZATION" title="Personalization" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Personalization</a> </li><li jsinstance="16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PHOTOGRAPHY" title="Photography" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Photography</a> </li><li jsinstance="17" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PRODUCTIVITY" title="Productivity" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Productivity</a> </li><li jsinstance="18" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SHOPPING" title="Shopping" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Shopping</a> </li><li jsinstance="19" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SOCIAL" title="Social" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Social</a> </li><li jsinstance="20" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="21" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TOOLS" title="Tools" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Tools</a> </li><li jsinstance="22" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRANSPORTATION" title="Transportation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Transportation</a> </li><li jsinstance="23" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRAVEL_AND_LOCAL" title="Travel &amp; Local" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Travel &amp; Local</a> </li><li jsinstance="24" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/WEATHER" title="Weather" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Weather</a> </li><li jsinstance="*25" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WIDGETS" title="Widgets" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Widgets</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li><li jsinstance="*1" class="action-dropdown-outer-list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item"> <ul jsl="$x 8;$t t-ufnLPd03FBo;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;"> <a class="parent-submenu-link" href="/store/apps/category/GAME" title="Games" jsl="$x 2;" jsan="7.parent-submenu-link,8.href,0.title">Games</a> </li> <li class="submenu-divider" jsl="$x 3;"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ACTION" title="Action" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Action</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ADVENTURE" title="Adventure" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Adventure</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ARCADE" title="Arcade" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Arcade</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_BOARD" title="Board" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Board</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CARD" title="Card" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Card</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASINO" title="Casino" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casino</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASUAL" title="Casual" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casual</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_EDUCATIONAL" title="Educational" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Educational</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_FAMILY" title="Family" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Family</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_MUSIC" title="Music" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_PUZZLE" title="Puzzle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Puzzle</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_RACING" title="Racing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Racing</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ROLE_PLAYING" title="Role Playing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Role Playing</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SIMULATION" title="Simulation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Simulation</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_STRATEGY" title="Strategy" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Strategy</a> </li><li jsinstance="16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_TRIVIA" title="Trivia" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Trivia</a> </li><li jsinstance="*17" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_WORD" title="Word" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Word</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li> </ul> </div> </div> </div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="1" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="2" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps" jsl="$x 1;" jsan="7.action-bar-link-title,0.aria-selected,8.href">Home</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="3" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps/top" jsl="$x 1;" jsan="7.action-bar-link-title,0.aria-selected,8.href">Top Charts</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="4" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps/new" jsl="$x 1;" jsan="7.action-bar-link-title,0.aria-selected,8.href">New Releases</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="*5" jsl="$x 2;$t t-JC5PZYWvdyU;$x 0;" class="action-bar-aux" jsan="t-JC5PZYWvdyU,7.action-bar-aux"> <div jsinstance="0" jsl="$x 1;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;$t t-jrVj4fYkncg;$x 0;" class="action-bar-link action-bar-help play-button small id-track-click" data-uitype="112" title="Help" jsan="t-jrVj4fYkncg,7.action-bar-link,7.action-bar-help,7.play-button,7.small,7.id-track-click,0.data-uitype,0.title"> <span class="action-bar-link-title" jsl="$x 1;" jsan="7.action-bar-link-title"></span> </button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="*1" jsl="$x 1;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item settings-gear-menu play-button small" jsan="t-rwatkwvxdCk,7.action-bar-item,7.settings-gear-menu,7.play-button,7.small"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;$t t-pZpp18oHJ6M;$x 0;" class="action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-" aria-owns="action-dropdown-children-" id="action-dropdown-parent-" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title"></span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-" id="action-dropdown-children-" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul class="submenu-item-wrapper" jsl="$x 6;" jsan="7.submenu-item-wrapper"> <li jsinstance="0" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-RFvLnNve14Q;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/store/account" title="My orders" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">My orders</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li><li jsinstance="1" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-RFvLnNve14Q;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/settings" title="Settings" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">Settings</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li><li jsinstance="*2" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-RFvLnNve14Q;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="https://www.google.com/android/devicemanager?hl=en_US" target="_blank" title="Android Device Manager" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.target,0.title">Android Device Manager</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li> </ul> </div> </div> </div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div> </div> </div> </div> </div><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div itemscope="itemscope" itemtype="http://schema.org/MobileApplication" id="body-content" role="main"><meta content="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" itemprop="url"><meta content="https://www.gstatic.com/android/market_images/plus/play_stream_logo.png" itemprop="logoImageUrl"><meta content="https://play.google.com" itemprop="logoHrefUrl"><div> <div class="details-wrapper apps square-cover id-track-partial-impression" data-docid="com.bluefroggaming.popdat" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="209"> <div class="details-info"> <div class="cover-container"> <img class="cover-image" src="https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300" alt="Cover art" aria-hidden="true" itemprop="image"> </div> <div class="info-container"> <div class="document-title" itemprop="name"> <div>Pop Dat</div> </div> <div itemprop="author" itemscope="" itemtype="http://schema.org/Organization"> <meta content="/store/apps/developer?id=Blue+Frog+Gaming" itemprop="url"> <a class="document-subtitle primary" href="/store/apps/developer?id=Blue+Frog+Gaming"> <span itemprop="name">Blue Frog Gaming</span> </a> <div class="document-subtitle">- August 26, 2011</div> </div> <div> <a class="document-subtitle category" href="/store/apps/category/GAME_ARCADE"> <span itemprop="genre">Arcade</span> </a> </div> <div class="details-actions"> <span> <span class="apps medium play-button buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.popdat"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span> <span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <meta content="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;rdid=com.bluefroggaming.popdat&amp;rdot=1&amp;feature=md" itemprop="url"> <meta content="" itemprop="previewUrl"> <meta content="" itemprop="offerType"> <meta content="0" itemprop="price"> <meta content="" itemprop="description"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="Android" itemprop="name"> </span> </span> </span> <jsl jsl="$x 0;$t t-_eIX7HsHFbc;$x 0;$t t-ha7zyzmVjec;$x 0;"> <jsl jsl="$x 1;$t t-nH6Xd1T8X0Y;$x 0;"> <jsl jsl="$x 1;$t t-R7hS--kHwck;$x 0;"> <span jsl="$x 1;" style="display:none" jsan="5.display"></span> </jsl> </jsl> </jsl> <span>Install</span> </button> </span> </span> <div class="id-wishlist-display wishlist-display"> <div class="wishlist-container" data-enable-wishlist-icon-center="true" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="203"> <button class="play-button wishlist-content wishlist-yet-to-add" data-docid="com.bluefroggaming.popdat"> <div class="wishlist-icon"></div> <div class="wishlist-text"> <div class="wishlist-text-default wishlist-text-add id-track-click" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="204"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding"> Adding... </div> <div class="wishlist-text-default wishlist-text-added id-track-impression"> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove id-track-click" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="205"> Remove </div> <div class="wishlist-text-default wishlist-text-removing"> Removing... </div> </div> </button> </div> </div> </div> <div class="voucher-message" style="display:none"> You have a reward that applies to this item. </div> <div class="app-compatibility"> <div class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div class="app-compatibility-final" style="display:none"> <div class="id-app-compatibility-icon compatibility-image"></div> </div> <div class="app-compatibility-device-list" style="display:none"></div> <script>(function(){var docid='com.bluefroggaming.popdat';if (typeof fci !== 'undefined'){fci(docid);}else {jQuery('body').one('onPressPlay',function(){fci(docid);});}
78
- })();</script> </div> <div class="details-info-divider"></div> <div class="header-star-badge"> <div class="stars-container"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.7 stars out of five stars "> <div class="current-rating" style="width: 93.33333015441895%"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small"></span>9) </div> </div> <div class="details-sharing-section"> <div class="plusone-container"> <div class="g-plusone" data-align="right" data-href="https://market.android.com/details?id=com.bluefroggaming.popdat" data-annotation="inline" data-recommendations="false" data-se="3" data-size="medium" data-source="google:market" data-width="240"></div> <script type="text/javascript">if (window.gapi && gapi.plusone){gapi.plusone.go("body-content");}
79
- </script> </div> </div> </div> </div> <div class="details-section screenshots" aria-hidden="true"> <div class="details-section-contents"> <div class="details-section-body expandable"> <div class="thumbnails-wrapper"> <div class="thumbnails" data-expand-target="thumbnails"> <img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-0" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-2" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-3" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-4" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-5" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310" itemprop="screenshot"> </div> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-5" data-expand-to="thumbnails" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900"> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <div class="details-section description simple contains-text-link"> <div class="details-section-contents show-more-container" data-show-use-buffer="true"> <div class="heading"> Description </div> <div class="show-more-content text-body" itemprop="description"> <div class="id-app-orig-desc">An action-packed blend of split-second skill and luck-based gameplay! Set off consecutive chains of particles to rack up massive combos as the energy bar refills. Keep those explosions comin’ or else it’s Game Over!<p>Features:<br>• Addictive ‘Endurance Mode’ that gets more challenging the longer you play!<br>• Radiant, expressive, and colorful graphics that take full advantage of High Resolution Displays!<br>• Beat the high scores of your friends and climb the ranks with competitive Leaderboards!<br>• Toe-tappingly catchy soundtrack that highlights every ‘Pop’ and ‘Boom’ of the on-screen action!<br>• Updates packed with new features and goodies coming soon!</p></div> <div class="show-more-end"></div> </div> <div> <button class="play-button show-more small"> Read more </button> <button class="play-button expand-close"> <div class="close-image"> </div> </button> </div> </div> <div class="details-section-divider"></div> </div> </div> </div><div class="details-wrapper apps" data-docid="com.bluefroggaming.popdat"> <div class="details-section highlighted-review" style="display:none"> <div class="highlighted-section-contents"> <div style="display:none" class="review-help unallowed-app-review-container" data-unallowed-docid="com.bluefroggaming.popdat"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <span class="unallowed-app-review id-unowned-app"> You must install this app before submitting a review. </span> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gplus-signup"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <a class="play-button id-no-nav apps" href="https://plus.google.com/up/accounts/upgrade?gpsrc=gpwr0&amp;continue=https://play.google.com/store/apps/details?id%3Dcom.bluefroggaming.popdat"> Sign up for Google+ </a> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gpr-onboard"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <button class="play-button id-enable-gpr apps"> Continue </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="write-review-panel"> <div> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <div class="review-row-header"> Write a review </div> </div> <div class="review-row"> <div class="write-review-title-container"> <input class="review-input-text-box write-review-title" maxlength="75" type="text"> </div> </div> <div class="review-row"> <div class="write-review-comment-container"> <textarea class="review-input-text-box write-review-comment" maxlength="1200"></textarea> </div> </div> <div class="review-row"> <div class="review-stars-container"> <div class="neutral write-star-rating-container"> <div class="small-star"> <div class="star-rating-editable-container"> <span class="star-common first-star"></span> <span class="star-common second-star"></span> <span class="star-common third-star"></span> <span class="star-common fourth-star"></span> <span class="star-common fifth-star"></span> </div> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> <div class="star-rating-aria"> <button class="first-star" aria-label=" Rate one star out of five stars "></button> <button class="second-star" aria-label=" Rate two stars out of five stars "></button> <button class="third-star" aria-label=" Rate three stars out of five stars "></button> <button class="fourth-star" aria-label=" Rate four stars out of five stars "></button> <button class="fifth-star" aria-label=" Rate five stars out of five stars "></button> </div> </div> </div> <span class="alert-message-container"> <div class="alert-image-container"></div> <div class="alert-review-text-container"></div> </span> </div> <div class="review-action-button-container"> <button class="id-submit-review play-button apps disabled"> Submit Review </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> </div> <div style="display:none" class="my-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> My review </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> <div class="review-action-button-container"> <button class="play-button icon-button small review-action-button-gap"> <div class="review-trash-button-icon"></div> </button> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="id-selected-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> <span> Review from <span style="display:none"> </span> </span> </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> </div> </div> <div class="details-section reviews"> <div class="details-section-contents"> <div class="details-section-heading"> <h1 class="heading"> Reviews </h1> <div class="review-actions id-track-click" data-uitype="206"> <div class="review-filters" data-expanded-only="true" style="display:none"> <div class="dropdown-menu-container review-filter id-review-sort-filter"> <div class="dropdown-menu"> <span class="displayed-child">Helpfulness</span> <div class="dropdown-icon"></div> </div> <div class="dropdown-menu-children"> <div class="dropdown-child" data-dropdown-value="0">Newest</div><div class="dropdown-child" data-dropdown-value="1">Rating</div><div class="dropdown-child selected" data-dropdown-value="2">Helpfulness</div> </div> </div><div class="dropdown-menu-container review-filter id-review-version-filter"> <div class="dropdown-menu"> <span class="displayed-child">All Versions</span> <div class="dropdown-icon"></div> </div> <div class="dropdown-menu-children"> <div class="dropdown-child selected" data-dropdown-value="">All Versions</div><div class="dropdown-child" data-dropdown-value="2">Latest Version</div> </div> </div> </div> <button class="id-write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a Review </span> </button> </div> </div> <div class="details-section-body expandable" data-done-fetching="true" data-load-more-docid="com.bluefroggaming.popdat" data-load-more-section-id="reviews"> <div class="preview-panel"> <div class="preview-reviews multicol" data-multicol-fixed-height="true" data-multicol-width="auto"> <div class="rating-box"> <div class="score-container" itemprop="aggregateRating" itemscope="itemscope" itemtype="http://schema.org/AggregateRating"> <meta content="4.666666507720947" itemprop="ratingValue"> <meta content="9" itemprop="ratingCount"> <div class="score">4.7</div> <div class="score-container-star-rating"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated 4.7 stars out of five stars "> <div class="current-rating" style="width: 93.33333015441895%"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num">9</span> total </div> </div> <div class="rating-histogram"> <div class="rating-bar-container five"> <span class="bar-label"> <span class="star-tiny star-full"></span>5 </span> <span class="bar" style="width:100%"></span> <span class="bar-number">8</span> </div><div class="rating-bar-container four"> <span class="bar-label"> <span class="star-tiny star-full"></span>4 </span> <span class="bar" style="width:0"></span> <span class="bar-number">0</span> </div><div class="rating-bar-container three"> <span class="bar-label"> <span class="star-tiny star-full"></span>3 </span> <span class="bar" style="width:0"></span> <span class="bar-number">0</span> </div><div class="rating-bar-container two"> <span class="bar-label"> <span class="star-tiny star-full"></span>2 </span> <span class="bar" style="width:12%"></span> <span class="bar-number">1</span> </div><div class="rating-bar-container one"> <span class="bar-label"> <span class="star-tiny star-full"></span>1 </span> <span class="bar" style="width:0"></span> <span class="bar-number">0</span> </div> </div> </div> <div class="featured-review" data-expand-to="user-0" data-reviewid="lg:AOqpTOFLotRWWL8F50O4eRjgG4qLIdxscdhqfgUYPIXPFSKdYST3akGCq1AbpwN5AIC2cL0A_IusaIg0iNeX9Q"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" style="width: 40%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Nearly fell asleep</span> There's potential but watching the little dots move around with nothing to do for seconds at a time. Plus, the sharing scores with friends didn't work </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-1" data-reviewid="lg:AOqpTOEP10sdyLzTvD5K-uaeuxd5p5Nvxty2sZH1l0n4XiI53kT8PKlxbRA-W_9ApKTCF7SeuVdI45AmOf6Ccg"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Addicting. Great sound and music </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-2" data-reviewid="lg:AOqpTOH5CGpJIWhh85M3LbdvavtQqvFV6Zku_0g6C03cLvtlNLc_cN-rM6z9Tb4CpdujAwMgj3AZt4yG5JdxKw"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Nostalgic </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-3" data-reviewid="lg:AOqpTOHRVyUFOWdcf3fdXadmV5O7BhgOmA5XpAmvafelzLR6l-AmdeDkf7dKgnBr76glGq3zCtsNHWJ89zYANA"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Fun and Addicting!</span> Before I know it, I've spent hours trying for a new high score. The game is extremely fun and keeps you interested as your strive for your longest chain reaction and a new high score! </div> <div class="paragraph-end details-light"></div> </div> </div> </div> </div> </div> <div style="display:none" class="all-reviews multicol" data-expand-scroll="true" data-multicol-fixed-height="true"> <div> <div class="reviews-heading"> User reviews </div> <div class="single-review"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-0" data-reviewid="lg:AOqpTOFLotRWWL8F50O4eRjgG4qLIdxscdhqfgUYPIXPFSKdYST3akGCq1AbpwN5AIC2cL0A_IusaIg0iNeX9Q"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">September 12, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPRkxvdFJXV0w4RjUwTzRlUmpnRzRxTElkeHNjZGhxZmdVWVBJWFBGU0tkWVNUM2FrR0NxMUFicHdONUFJQzJjTDBBX0l1c2FJZzBpTmVYOVE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" style="width: 40%"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Nearly fell asleep</span> There's potential but watching the little dots move around with nothing to do for seconds at a time. Plus, the sharing scores with friends didn't work <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-1" data-reviewid="lg:AOqpTOEP10sdyLzTvD5K-uaeuxd5p5Nvxty2sZH1l0n4XiI53kT8PKlxbRA-W_9ApKTCF7SeuVdI45AmOf6Ccg"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">November 19, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPRVAxMHNkeUx6VHZENUstdWFldXhkNXA1TnZ4dHkyc1pIMWwwbjRYaUk1M2tUOFBLbHhiUkEtV185QXBLVENGN1NldVZkSTQ1QW1PZjZDY2c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" style="width: 100%"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title"></span> Addicting. Great sound and music <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-2" data-reviewid="lg:AOqpTOH5CGpJIWhh85M3LbdvavtQqvFV6Zku_0g6C03cLvtlNLc_cN-rM6z9Tb4CpdujAwMgj3AZt4yG5JdxKw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">September 3, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPSDVDR3BKSVdoaDg1TTNMYmR2YXZ0UXF2RlY2Wmt1XzBnNkMwM2NMdnRsTkxjX2NOLXJNNno5VGI0Q3BkdWpBd01najNBWnQ0eUc1SmR4S3c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" style="width: 100%"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title"></span> Nostalgic <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-3" data-reviewid="lg:AOqpTOHRVyUFOWdcf3fdXadmV5O7BhgOmA5XpAmvafelzLR6l-AmdeDkf7dKgnBr76glGq3zCtsNHWJ89zYANA"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">August 28, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPSFJWeVVGT1dkY2YzZmRYYWRtVjVPN0JoZ09tQTVYcEFtdmFmZWx6TFI2bC1BbWRlRGtmN2RLZ25Ccjc2Z2xHcTN6Q3RzTkhXSjg5ellBTkE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" style="width: 100%"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Fun and Addicting!</span> Before I know it, I've spent hours trying for a new high score. The game is extremely fun and keeps you interested as your strive for your longest chain reaction and a new high score! <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <script>if (typeof ircs == 'undefined'){jQuery('body').one('onPressPlay',function(){ircs();});}else {ircs();}
80
- </script> </div> <div class="details-wrapper"> <div class="details-section metadata"> <div class="details-section-heading"> <div class="heading"> Additional information </div> </div> <div class="details-section-contents"> <div class="meta-info"> <div class="title">Updated</div> <div class="content" itemprop="datePublished">August 26, 2011</div> </div> <div class="meta-info"> <div class="title">Size</div> <div class="content" itemprop="fileSize"> 9.0M </div> </div> <div class="meta-info"> <div class="title">Installs</div> <div class="content" itemprop="numDownloads"> 500 - 1,000 </div> </div> <div class="meta-info"> <div class="title">Current Version</div> <div class="content" itemprop="softwareVersion"> 1.0 </div> </div> <div class="meta-info"> <div class="title">Requires Android</div> <div class="content" itemprop="operatingSystems"> 2.2 and up </div> </div> <div class="meta-info"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating"> Everyone </div> </div> <div class="meta-info"> <div class="title">Permissions</div> <button class="content id-view-permissions-details fake-link" data-docid="com.bluefroggaming.popdat"> View details </button> </div> <div class="meta-info contains-text-link"> <div class="title">Report</div> <a class="content" href="https://support.google.com/googleplay/?p=report_content" target="_blank"> Flag as inappropriate </a> </div> <div class="meta-info"> <div class="title"> Offered By </div> <div class="content">Blue Frog Gaming</div> </div> <div class="meta-info"> <div class="title"> Developer </div> <div class="content contains-text-link"> <a class="dev-link" href="https://www.google.com/url?q=http://bluefroggaming.com&amp;sa=D&amp;usg=AFQjCNFJZLN9txV8hct_LYh5XkBJbNBhiQ" rel="nofollow" target="_blank"> Visit Website </a> <a class="dev-link" href="mailto:support@hdgames.zendesk.com" rel="nofollow" target="_blank"> Email support@hdgames.zendesk.com </a> </div> </div> </div> <div class="details-section-divider"></div> </div> </div><div class="details-wrapper"> <div class="details-section recommendation"> <div class="details-section-contents"> <div class="rec-cluster" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-uitype="400"> <h1 class="heading">Similar</h1> <div class="cards expandable"> <div class="card no-rationale square-cover apps small" data-docid="com.mac.warzonepaid" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.mac.warzonepaid" data-server-cookie="CAIaHQobEhkKE2NvbS5tYWMud2Fyem9uZXBhaWQQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHQobEhkKE2NvbS5tYWMud2Fyem9uZXBhaWQQARgD" data-uitype="500" href="/store/apps/details?id=com.mac.warzonepaid" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="WarZone" data-cover-large="https://lh6.ggpht.com/btC2bpv8u0GCKeyjW_4eRY7nbe5c6aZKFNqfuN3SNfP6pmLixA2zcLYcVz2IZap-Y4g=w340" data-cover-small="https://lh6.ggpht.com/btC2bpv8u0GCKeyjW_4eRY7nbe5c6aZKFNqfuN3SNfP6pmLixA2zcLYcVz2IZap-Y4g=w170" src="https://lh6.ggpht.com/btC2bpv8u0GCKeyjW_4eRY7nbe5c6aZKFNqfuN3SNfP6pmLixA2zcLYcVz2IZap-Y4g=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.mac.warzonepaid" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.mac.warzonepaid"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.mac.warzonepaid" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.mac.warzonepaid" title="WarZone"> WarZone <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=HG+Media+Group" title="HG Media Group">HG Media Group</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.mac.warzonepaid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.99</span> </button> </span> </span> </div> <div class="description"> WarZone takes place on earth as you defend the battlefield with different towers. Features upgrades, achievements, open maps, and much more!<p>The full version features 10 levels with unlimited upgrades and achievements.<p>A free version is also available (try out the free version first!).<p>Free version progress is automatically imported into the full version, should you wish to upgrade.</p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.mac.warzonepaid" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.mac.warzonepaid" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 0.0 stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.mac.warzonepaid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.caresilabs.wheeljoy.paid" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.caresilabs.wheeljoy.paid" data-server-cookie="CAIaJgokEiIKHGNvbS5jYXJlc2lsYWJzLndoZWVsam95LnBhaWQQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaJgokEiIKHGNvbS5jYXJlc2lsYWJzLndoZWVsam95LnBhaWQQARgD" data-uitype="500" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Wheeljoy" data-cover-large="https://lh3.ggpht.com/UhpK_Ipdq_9gCSe97kCNU9qpcYKgj6Dk4dgkFVeAnEGQ5AGFWquX1uinyyrfFjiCSA=w340" data-cover-small="https://lh3.ggpht.com/UhpK_Ipdq_9gCSe97kCNU9qpcYKgj6Dk4dgkFVeAnEGQ5AGFWquX1uinyyrfFjiCSA=w170" src="https://lh3.ggpht.com/UhpK_Ipdq_9gCSe97kCNU9qpcYKgj6Dk4dgkFVeAnEGQ5AGFWquX1uinyyrfFjiCSA=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.caresilabs.wheeljoy.paid"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" title="Wheeljoy"> Wheeljoy <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Caresi+Labs" title="Caresi Labs">Caresi Labs</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.caresilabs.wheeljoy.paid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.98</span> </button> </span> </span> </div> <div class="description"> Wheeljoy is finally here!<p>Wheelie and his friends have encountered a difficult task where they need to get from point A to point B in challenging and fun levels. It&#39;s your job to keep them going! Jump, dodge and have fun in Caresi Labs newest game!<p>Wheeljoy features:<p>★ 100+ Challenging and unique levels<br>★ 30+ Achievements<br>★ 6+ Skins<br>★ Cute cartoonish graphics<p>I really hope you enjoy the game! <br>Inspired by The Impossible Game, Yoo Ninja and FastBall. Created with almighty LibGDX.<p>Find any bugs or want to give feedback?<br>caresilabs@gmail.com<br>http://caresilabs.com</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.7 stars out of five stars "> <div class="current-rating" style="width: 93.33333015441895%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.caresilabs.wheeljoy.paid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.98</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.blazingsoft.crosswolf" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.blazingsoft.crosswolf" data-server-cookie="CAIaIwohEh8KGWNvbS5ibGF6aW5nc29mdC5jcm9zc3dvbGYQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaIwohEh8KGWNvbS5ibGF6aW5nc29mdC5jcm9zc3dvbGYQARgD" data-uitype="500" href="/store/apps/details?id=com.blazingsoft.crosswolf" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="CrossWolf" data-cover-large="https://lh6.ggpht.com/t_AN8EBUPDoWgBRioG0Lx6waW0gj0gF9UMEXY6LPxs3LYL_Euxkka4lj1UgDVRjzfQ=w340" data-cover-small="https://lh6.ggpht.com/t_AN8EBUPDoWgBRioG0Lx6waW0gj0gF9UMEXY6LPxs3LYL_Euxkka4lj1UgDVRjzfQ=w170" src="https://lh6.ggpht.com/t_AN8EBUPDoWgBRioG0Lx6waW0gj0gF9UMEXY6LPxs3LYL_Euxkka4lj1UgDVRjzfQ=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.blazingsoft.crosswolf" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.blazingsoft.crosswolf"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.blazingsoft.crosswolf" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.blazingsoft.crosswolf" title="CrossWolf"> CrossWolf <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Blazing+Soft+SAS" title="Blazing Soft SAS">Blazing Soft SAS</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.blazingsoft.crosswolf"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$0.99</span> </button> </span> </span> </div> <div class="description"> NEVER GIVE UP - Run as fast as you can through dangerous worlds to collect coins and destroy enemies. It&#39;s CrossWolf, the new non-stop adventure that challenges you to cross every obstacle, learn every skill, defeat every enemy.<p>Jump onto platforms large and small while sprinting through ever-changing worlds. Just tap longer to jump higher (you can even do a double jump!).<p>Enjoy the complex and addictive gameplay that&#39;s unlike anything you&#39;ve tried before. CrossWolf will break every expectation you have about running games. <p>FAST-PACED RUNNING ADVENTURE<p>In this fast-paced 2-D running game, you must dodge or destroy your foes. Collect coins along the way to get valuable Power-Ups and wolf upgrades.<p>New dangers await you at every jump. Watch out for falling platforms, dangerous mobs, and lethal obstacles.<p>Start as a wolf cub and move up the ranks. You&#39;ll get new skills along the way like the Fire Roll.<p>Want to SURVIVE? You&#39;ll need quick reflexes and perfect timing.<br>Want to WIN? You&#39;ll need to defeat all enemies that seek to destroy you.<p>EARN SKILLS &amp; EXTRAS<p>As you leap from platform to platform, don&#39;t forget to grab the gold coins. You can redeem these coins in the store for much-needed help.<p>With your coins, you can get protective shields, restore skill bars, and even earn speed boosts. You can also get valuable skins: with the Zombie Skin, you can jump higher to avoid enemies, and with the Magma Skin, you are immune to enemy beams.<p>KEEP ON RUNNING<p>Features of the new CrossWolf game include:<p>* Fast-Paced Running Game - Run, jump, and fight your way to victory<br>* Dangerous Enemies - Defeat the deadly foes that stand in your way<br>* Valuable Power-Ups - Collect coins to earn helpful upgrades<br>* Addictive Gameplay - Complex play makes for never-ending fun<br>* Ipen Feint Enabled - View high scores for bragging rights<p>Are YOU ready for the challenge? Play CrossWolf now and find out!</p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.blazingsoft.crosswolf" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.blazingsoft.crosswolf" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.0 stars out of five stars "> <div class="current-rating" style="width: 80%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.blazingsoft.crosswolf"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$0.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="org.vladest.Popcorn" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="org.vladest.Popcorn" data-server-cookie="CAIaHQobEhkKE29yZy52bGFkZXN0LlBvcGNvcm4QARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHQobEhkKE29yZy52bGFkZXN0LlBvcGNvcm4QARgD" data-uitype="500" href="/store/apps/details?id=org.vladest.Popcorn" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Popcorn Tap The Corn !" data-cover-large="https://lh6.ggpht.com/jF9yV5q_uNIRHjnyMFz9iC1kaMYoX7qhUBKPJbA8fOZPBW1VqywCQ5kQgX6W0bCxhJEb=w340" data-cover-small="https://lh6.ggpht.com/jF9yV5q_uNIRHjnyMFz9iC1kaMYoX7qhUBKPJbA8fOZPBW1VqywCQ5kQgX6W0bCxhJEb=w170" src="https://lh6.ggpht.com/jF9yV5q_uNIRHjnyMFz9iC1kaMYoX7qhUBKPJbA8fOZPBW1VqywCQ5kQgX6W0bCxhJEb=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=org.vladest.Popcorn" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="org.vladest.Popcorn"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=org.vladest.Popcorn" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=org.vladest.Popcorn" title="Popcorn Tap The Corn !"> Popcorn Tap The Corn ! <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Maksym+Osadchyi" title="Maksym Osadchyi">Maksym Osadchyi</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="org.vladest.Popcorn"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> To start the game, press the start button in the upper left corner. From different sides of the screen a corn grain will start to fly. Tapping on the flying corn grain will turn it into popcorn!<br>Try to tap as many of corn grains as possible in a single round to gain higher score! Children charmed by the game and forget about everything! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=org.vladest.Popcorn" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=org.vladest.Popcorn" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.5 stars out of five stars "> <div class="current-rating" style="width: 70.34482955932617%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="org.vladest.Popcorn"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.mtb.dds" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.mtb.dds" data-server-cookie="CAIaFQoTEhEKC2NvbS5tdGIuZGRzEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaFQoTEhEKC2NvbS5tdGIuZGRzEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.mtb.dds" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="斗斗殺" data-cover-large="https://lh6.ggpht.com/ZuFZiWM_CZFxnIb56OkZw6IWqOkJ_Bnnij0TBy7d11MA6biEhOuCNYb5N72nsh3PHg=w340" data-cover-small="https://lh6.ggpht.com/ZuFZiWM_CZFxnIb56OkZw6IWqOkJ_Bnnij0TBy7d11MA6biEhOuCNYb5N72nsh3PHg=w170" src="https://lh6.ggpht.com/ZuFZiWM_CZFxnIb56OkZw6IWqOkJ_Bnnij0TBy7d11MA6biEhOuCNYb5N72nsh3PHg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.mtb.dds" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.mtb.dds"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.mtb.dds" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.mtb.dds" title="斗斗殺"> 斗斗殺 <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=MTB+Game" title="MTB Game">MTB Game</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.mtb.dds"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$0.99</span> </button> </span> </span> </div> <div class="description"> 當斗地主遇上三國殺,誰能笑傲江湖? <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.mtb.dds" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.mtb.dds" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 0.0 stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.mtb.dds"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$0.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.hdl.datbom" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.hdl.datbom" data-server-cookie="CAIaGAoWEhQKDmNvbS5oZGwuZGF0Ym9tEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGAoWEhQKDmNvbS5oZGwuZGF0Ym9tEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.hdl.datbom" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Dat Bom v1.0" data-cover-large="https://lh4.ggpht.com/vrKZwBhNJ0vlCAgGHE3nOgjrzLkNAW8QFc5mqC76NyCVseCgC3InXgZCQaz1SF-8E3g=w340" data-cover-small="https://lh4.ggpht.com/vrKZwBhNJ0vlCAgGHE3nOgjrzLkNAW8QFc5mqC76NyCVseCgC3InXgZCQaz1SF-8E3g=w170" src="https://lh4.ggpht.com/vrKZwBhNJ0vlCAgGHE3nOgjrzLkNAW8QFc5mqC76NyCVseCgC3InXgZCQaz1SF-8E3g=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.hdl.datbom" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.hdl.datbom"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.hdl.datbom" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.hdl.datbom" title="Dat Bom v1.0"> Dat Bom v1.0 <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Loi+Huynh" title="Loi Huynh">Loi Huynh</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.hdl.datbom"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.00</span> </button> </span> </span> </div> <div class="description"> Nếu bạn là một trong những người thưởng thức trò chơi truyền thống &quot;người đàn ông Bomber&quot;, bạn sẽ có cơ hội để nhìn thấy nó đang được phát triển trong v1.0 anh hùng Bomb. Tuy nhiên, các tính năng mới hoàn toàn sẽ làm hài lòng bạn. Bomb Hero là một trò chơi đơn giản, được thực hiện dựa trên một trò chơi cổ điển cũ. Tuy nhiên, người chơi cũng có thể thưởng thức một số trong những sáng kiến ​​mới trong trò chơi này. Chủ đề của trò chơi là một Cowboy Ai Cập với mục tiêu chiến đấu chống lại Nghệ thuật Dart, đặc biệt là phù thủy, Dracula, và quái vật khác và các lực lượng tối. Trò chơi có sự đa dạng của các giai đoạn khác nhau, từ cái lạnh của Bắc Mỹ, đất nông nghiệp của Nam Georgia, và từ bụi của Ấn Độ, ẩm của miền Nam Florida. Khó khăn cũng tăng dần cho mỗi từng giai đoạn, để người chơi có thể nhìn thấy nhiều khía cạnh của trò chơi. Một số khả năng của nhân vật chính là rất cao được thiết kế để làm cho anh ta đạt được mục tiêu cuối cùng của ông. Bên cạnh đó, những kẻ xấu cũng tỉ mỉ mã hoá, để họ có nhiều sức mạnh kỳ lạ và sắc nét như là vô hình, có thể đi qua các bức tường, và một số người trong số họ được ưu đãi để được thực sự thông minh. Trò chơi cũng tăng cường sự linh hoạt trong việc kiểm soát các quả bom, theo nhiều cách khác nhau, giống như ném đá bóng. Hơn nữa, bằng cách sử dụng công nghệ mới để tiết kiệm trò chơi trên Android làm cho nó có thể cho người chơi vượt qua một số giai đoạn khó khăn nhất. Và cùng thời gian, tiện ích của việc thực hành trước khi chơi bất kỳ giai đoạn, làm cho tất cả mọi thứ có vẻ dễ dàng hơn và có thể. Các Widgets cao bồi của chúng tôi là đạt được một số lượng có thể chấp nhận được, một số là thực sự cơ bản, như phiên bản cũ, một số rất phức tạp, như khả năng vô hình trong một khoảng thời gian. Đặc biệt nhất phải được rằng đồ họa là khá thiết kế và làm mới, hỗ trợ cả hai vai và chơi định hướng phong cảnh. Bạn sẽ thích thú khi chạm vào màn hình của Android của bạn mà không cần phải sử dụng bàn phím thô như truyền thống, bởi vì các thuật toán sử dụng trong các trò chơi được xây dựng để giúp bạn. Tất cả mọi thứ được kết hợp với nhau để giúp bạn tiếp xúc với các cảm giác của thực tế trong lĩnh vực ảo. Hy vọng bạn sẽ thưởng thức và thư giãn với các trò chơi! ông chủ của công ty &quot;Harry và Lý thuyết Trò chơi&quot; hân hạnh giới thiệu đến tất cả người chơi. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.hdl.datbom" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.hdl.datbom" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 0.0 stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.hdl.datbom"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.00</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="cz.dejvice.rc.Marvin" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="cz.dejvice.rc.Marvin" data-server-cookie="CAIaHgocEhoKFGN6LmRlanZpY2UucmMuTWFydmluEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHgocEhoKFGN6LmRlanZpY2UucmMuTWFydmluEAEYAw==" data-uitype="500" href="/store/apps/details?id=cz.dejvice.rc.Marvin" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Marvin - ZX Spectrum Emulator" data-cover-large="https://lh3.ggpht.com/1k3RMYg1T_F_Xc1NeKEuoHFDBP2aOH84dI7ckfSWsDeLyNICOL2KzwwBl3oKswq_lMs=w340" data-cover-small="https://lh3.ggpht.com/1k3RMYg1T_F_Xc1NeKEuoHFDBP2aOH84dI7ckfSWsDeLyNICOL2KzwwBl3oKswq_lMs=w170" src="https://lh3.ggpht.com/1k3RMYg1T_F_Xc1NeKEuoHFDBP2aOH84dI7ckfSWsDeLyNICOL2KzwwBl3oKswq_lMs=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=cz.dejvice.rc.Marvin" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="cz.dejvice.rc.Marvin"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=cz.dejvice.rc.Marvin" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=cz.dejvice.rc.Marvin" title="Marvin - ZX Spectrum Emulator"> Marvin - ZX Spectrum Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=RC" title="RC">RC</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="cz.dejvice.rc.Marvin"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> World&#39;s first Android ZX Spectrum Emulator<br>- full 48/128k Spectrum emulation<br>- accurate timing, 100% speed, 50 fps<br>- high quality 48k and AY-8192 sound<br>- click&amp;play worldofspectrum.org game browser<br>- built-in POKE database for thousands of games<br>- border effects<br>- .z80/.sna snapshot loading/saving<br>- .tap/.tzx tape file support<br>- automatic .zip decompression<br>- fast native code with openGL hardware-accelerated graphics <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=cz.dejvice.rc.Marvin" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=cz.dejvice.rc.Marvin" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" style="width: 85.52584648132324%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="cz.dejvice.rc.Marvin"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.spectaculator.spectaculator" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.spectaculator.spectaculator" data-server-cookie="CAIaKQonEiUKH2NvbS5zcGVjdGFjdWxhdG9yLnNwZWN0YWN1bGF0b3IQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaKQonEiUKH2NvbS5zcGVjdGFjdWxhdG9yLnNwZWN0YWN1bGF0b3IQARgD" data-uitype="500" href="/store/apps/details?id=com.spectaculator.spectaculator" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Spectaculator, ZX Emulator" data-cover-large="https://lh6.ggpht.com/r8YpCNpaXluNEIVNBPn91XmenMcmc1YDpTA0-56ytfw07V86j9AVVMQB7ecuMv1Q_lc=w340" data-cover-small="https://lh6.ggpht.com/r8YpCNpaXluNEIVNBPn91XmenMcmc1YDpTA0-56ytfw07V86j9AVVMQB7ecuMv1Q_lc=w170" src="https://lh6.ggpht.com/r8YpCNpaXluNEIVNBPn91XmenMcmc1YDpTA0-56ytfw07V86j9AVVMQB7ecuMv1Q_lc=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.spectaculator.spectaculator" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.spectaculator.spectaculator"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.spectaculator.spectaculator" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.spectaculator.spectaculator" title="Spectaculator, ZX Emulator"> Spectaculator, ZX Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Spectaculator.com" title="Spectaculator.com">Spectaculator.com</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.spectaculator.spectaculator"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> In April 1982, Sir Clive Sinclair launched what was to become one of the most popular home computers ever made - the Sinclair ZX Spectrum. <p>Spectaculator is a Sinclair ZX Spectrum emulator that takes you back to the 1980s - to the golden era of 8-bit gaming! <p>Includes the officially licensed &#39;Stephen Crow Anthology&#39;: <br>©1983-2013 Stephen Crow. All rights reserved.<br> - Factory Breakout<br> - Firelord<br> - Laser Snaker<br> - Starquake<br> - Wizard&#39;s Lair<br>... all specially adapted for Android.<br> <br>FEATURES: <br>• Desktop quality ZX Spectrum emulation - games and other programs run just like on a real ZX Spectrum<br>• Play in portrait or landscape orientations <br>• Save your game progress (four saved game slots + a single cloud save slot per game). <br>• Cloud saves (via Dropbox). Gives the possibility of saving on one device (e.g. phone) and continue playing on another device (e.g. tablet or PC)<br>• Enter pokes (cheats) for infinite lives, shields etc. <br>• Lookup game hints, tips and maps <br>• Play in black and white with TV screen simulation for the ultimate 1980s experience! <br>• Type on a virtual ZX Spectrum keyboard <br>• Use external Bluetooth or USB keyboards<br>• Choose authentic cassette loading or fast play <br>• Program in Sinclair BASIC <br>• Play using an external arcade controller (Bluetooth or USB gamepads such as an Xbox 360 controller, iControlPad, Moga Pocket, Moga Pro, Gametel and iCade)<br>• Use gestures (pans, taps and swipes) to control games<br>• Localised into Spanish<br>• In-app shop with licensed games from the original authors and publishers<p>ADDITIONAL FEATURES IN THE FULL VERSION:<p>Add your own games!<br> - Upload and play .TAP/.TZX cassette files, .DSK disk files and .SZX/.Z80/.SNA snapshots<br> - Add inlay artwork for your own games<br> <br>Get an additional 19 officially licensed ZX Spectrum games to play (included in the upgrade):<br> - 3D Starstrike by Realtime Games Software <br> - Auf Wiedersehen Monty by Gremlin Graphics <br> - Avenger by Gremlin Graphics <br> - Bounder by Gremlin Graphics <br> - Cyclone by Vortex Software <br> - Dynamite Dan by Rod Bowkett/Mirrorsoft <br> - Highway Encounter by Vortex Software <br> - Jack The Nipper by Gremlin Graphics <br> - Krackout by Gremlin Graphics <br> - Jekyll &amp; Hyde by Zenobi Software <br> - Metabolis by Gremlin Graphics <br> - Monty On The Run by Gremlin Graphics <br> - On The Run by Design Design <br> - Revolution by Vortex Software <br> - Tau Ceti by Pete Cooke/CRL <br> - The Way Of The Tiger by Gremlin Graphics <br> - Albatrossity by Jonathan Cauldwell <br> - Battery&#39;s Not Precluded by Jonathan Cauldwell <br> - The Fantastic Mister Fruity by Jonathan Cauldwell <p>... with more available from the in-app shop.<p>ADDITIONAL GAME PACKS:<br>The following officially licensed game packs are available from the in-app shop:<p>Design Design Games Pack <br> - 5 Games. Includes Halls of the Things, Dark Star <br> - All proceeds go to the Anthony Nolan Organisation<br> <br>Gremlin Graphics Vol. 1 <br> - 6 games. Includes Wanted! Monty Mole, Skate Crazy <p>Gremlin Graphics Vol. 2 <br> - 6 games. Includes Jack The Nipper II: In Coconut Capers, North Star<p>Gremlin Graphics Vol. 3 <br> - 6 games. Includes Switchblade, Super Scramble Simulator +3<p>Odin Computer Graphics Anthology <br> - 9 games. Includes Nodes Of Yesod, Robin Of The Wood, Heartland <p>Realtime Games Pack <br> - Starstrike II, 3D Tank Duel <p>Vortex Anthology <br> - 6 games. Includes Alien Highway, Deflektor, T.L.L. (Tornado Low Level) <p>Zenobi Adventure Pack Vol. 1 <br> - 6 games. Includes Aura-Scope, The Gods of War, Leopold The Minstrel <p>Zenobi Adventure Pack Vol. 2 <br> - 6 games. Includes The Khangrin Plans, The Krazy Kartoonist Kaper <p>Zenobi Adventures Vol. 3 <br> - 5 games. Includes The Apprentice, The Bardic Rite, Jester Quest<p>The following single games are available from the in-app shop: <br> - Carrier Command <br> - Dynamite Dan II <br> - Frank N. Stein <br> - Laser Squad (Free!)<br> - Lords Of Chaos (Free!)<br> - The Lords Of Midnight</p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.spectaculator.spectaculator" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.spectaculator.spectaculator" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.1 stars out of five stars "> <div class="current-rating" style="width: 81.99999809265137%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.spectaculator.spectaculator"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.seleuco.xpectrum" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.seleuco.xpectrum" data-server-cookie="CAIaHgocEhoKFGNvbS5zZWxldWNvLnhwZWN0cnVtEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHgocEhoKFGNvbS5zZWxldWNvLnhwZWN0cnVtEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.seleuco.xpectrum" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Xpectroid ZX Spectrum Emulator" data-cover-large="https://lh6.ggpht.com/8WQAF9r3Mw0VZ0OeCDlYJve-FTfoVNE8T11x6yPvpBPc7XP39nVdYZUQHZq0MzPW068=w340" data-cover-small="https://lh6.ggpht.com/8WQAF9r3Mw0VZ0OeCDlYJve-FTfoVNE8T11x6yPvpBPc7XP39nVdYZUQHZq0MzPW068=w170" src="https://lh6.ggpht.com/8WQAF9r3Mw0VZ0OeCDlYJve-FTfoVNE8T11x6yPvpBPc7XP39nVdYZUQHZq0MzPW068=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.seleuco.xpectrum" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.seleuco.xpectrum"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.seleuco.xpectrum" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.seleuco.xpectrum" title="Xpectroid ZX Spectrum Emulator"> Xpectroid ZX Spectrum Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Seleuco" title="Seleuco">Seleuco</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.seleuco.xpectrum"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> ZX Spectrum 48K, 128K, Plus2, Plus2A, Plus3 emulator.<p>New1.2.1:<br>-Fixed Wiicontroller remap issue.<p>New1.2:<p>-Added support for zipped files.<br>-Fixed Multi-touch bug.<br>-Fixed Xperia Play keys remap.<br>-Added posibility to move to SD.<p><br>New1.1:<p>- New auto frame skip mode.<br>- Improved multitouch responsiveness.<br>- Improved Android 1.5 cupcake support.<br>- New landscape touch controller suited for no multitouch or slower devices<br>- Redefine hardware keys.<br>- Trackball support.<br>- Improved touch keyboard</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.seleuco.xpectrum" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.seleuco.xpectrum" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 75.14969825744629%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.seleuco.xpectrum"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="app.usp" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="app.usp" data-server-cookie="CAIaEQoPEg0KB2FwcC51c3AQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaEQoPEg0KB2FwcC51c3AQARgD" data-uitype="500" href="/store/apps/details?id=app.usp" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="USP - ZX Spectrum Emulator" data-cover-large="https://lh3.ggpht.com/9db26tF-ceJwl4oFZj45Pm5ZENJOeZWU9YmkOqtOt-Ndb2DdjULtmbv99FLaOhWZaGQ=w340" data-cover-small="https://lh3.ggpht.com/9db26tF-ceJwl4oFZj45Pm5ZENJOeZWU9YmkOqtOt-Ndb2DdjULtmbv99FLaOhWZaGQ=w170" src="https://lh3.ggpht.com/9db26tF-ceJwl4oFZj45Pm5ZENJOeZWU9YmkOqtOt-Ndb2DdjULtmbv99FLaOhWZaGQ=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=app.usp" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="app.usp"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=app.usp" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=app.usp" title="USP - ZX Spectrum Emulator"> USP - ZX Spectrum Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=djdron" title="djdron">djdron</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="app.usp"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Unreal Speccy Portable has been ported to Windows/Linux/Mac/Symbian/Dingoo A320/Caanoo/WIZ/Android/PSP/Raspberry Pi/Chrome NaCl/Blackberry.<p>Features:<br>+ 48/128K (Pentagon multicolors)<br>+ HQ 44KHz/16 bit stereo sound emulation - AY/YM, Beeper<br>+ On-screen full 40 keys rubber zx-keyboard<br>+ Kempston/Sinclair/Cursor/QAOP Joysticks<br>+ Multi-touch support<br>+ Auto playing files<br>+ Beta Disk interface<br>+ RZX replays support<br>+ Tape with fast loading support<br>+ Snapshots<br>+ 100% speed - 50 FPS<br>+ Zooming &amp; Filtering options<br>+ Online sources integration: http://vtrdos.ru/ , http://worldofspectrum.org/ , http://www.rzxarchive.co.uk/ , http://zxaaa.untergrund.net/<p>Supported formats: sna, z80, szx, rzx, tap, tzx, csw, trd, scl, fdi, zip.<p>Authors : SMT, Dexus, Alone Coder, deathsoft.<br>Portable version : djdron, scor.<p>Keys in emulator:<br>menu - menu<br>back - toggle keyboard/joystick<br>arrows - joystick<br>dial - enter<br>camera - space<br>vol up/down - change volume<p>Found a bug or have any ideas? Report it here:<br>https://bitbucket.org/djdron/unrealspeccyp/issues<p>Join us on twitter:<br>https://twitter.com/UnrealSpeccyP<p>This program is free software: you can redistribute it and/or modify<br>it under the terms of the GNU General Public License as published by<br>the Free Software Foundation, either version 3 of the License, or<br>(at your option) any later version.<p>This program is distributed in the hope that it will be useful,<br>but WITHOUT ANY WARRANTY; without even the implied warranty of<br>MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br>GNU General Public License for more details.<p>You should have received a copy of the GNU General Public License<br>along with this program. If not, see http://www.gnu.org/licenses/gpl.html</p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=app.usp" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=app.usp" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" style="width: 86.72625541687012%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="app.usp"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.fms.speccy" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.fms.speccy" data-server-cookie="CAIaGAoWEhQKDmNvbS5mbXMuc3BlY2N5EAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGAoWEhQKDmNvbS5mbXMuc3BlY2N5EAEYAw==" data-uitype="500" href="/store/apps/details?id=com.fms.speccy" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Speccy - ZX Spectrum Emulator" data-cover-large="https://lh6.ggpht.com/FuIusofr-D8y_LUUruY1_rA5vEF31miEn4x2X3_PoF3FRVp72T3rAJNtUCB5r0KN92g=w340" data-cover-small="https://lh6.ggpht.com/FuIusofr-D8y_LUUruY1_rA5vEF31miEn4x2X3_PoF3FRVp72T3rAJNtUCB5r0KN92g=w170" src="https://lh6.ggpht.com/FuIusofr-D8y_LUUruY1_rA5vEF31miEn4x2X3_PoF3FRVp72T3rAJNtUCB5r0KN92g=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.fms.speccy" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.fms.speccy"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.fms.speccy" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.fms.speccy" title="Speccy - ZX Spectrum Emulator"> Speccy - ZX Spectrum Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Garage+Research+Emulators" title="Garage Research Emulators">Garage Research Emulators</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.fms.speccy"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Speccy is a Sinclair ZX Spectrum home computer emulator. It will run software written for Spectrum 16k, 48k, 128k, +2, +2A, +3, Timex Sinclair, Pentagon, and Skorpion home computers. Features:<p>* Specifically optimized for Android devices, using ARM assembler and running at the same speed as a real Spectrum.<br>* Full screen portrait mode emulation, with options for simulating TV scanlines and fuzzy TV display.<br>* Records soundtrack to MIDI files.<br>* Includes both physical and touch screen keyboard support.<br>* Includes NetPlay functionality for playing over local network or Internet.<br>* Includes WorldOfSpectrum.org software archive browser.<p>* Supports snapshots (*.sna, *.z80).<br>* Supports loading from tapes (*.tap, *.tzx files), with authentic tape sounds.<br>* Supports TR-DOS and a variety of other disk image formats (*.trd, *.scl, *.fdi, *.dsk).<br>* Supports 128k and Fuller sound chips.<p>* Emulates Cursor, Protek, AGF, Kempston, and Sinclair Interface II joysticks, using touch screen, physical keyboard, or accelerometer.<br>* Emulates Kempston mouse.<br>* Emulates ZX Printer and other printers.<p>* Supports GoogleTV devices running Android 4.x (Jelly Bean), such as LG G2/G3.<br>* Supports Moga, iCade, Nyko PlayPad, and other Bluetooth and USB gamepads.<br>* Supports Xperia Play gaming buttons.<p>Speccy package itself does not contain any Spectrum programs. You should place your own Spectrum files onto the SD card before running Speccy.<p>Please, do not run any software you do not own with Speccy. The author cannot and will not tell you where to find free Spectrum programs.<p>Please, report any encountered problems here:<p>http://groups.google.com/group/emul8</p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.fms.speccy" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.fms.speccy" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.7 stars out of five stars "> <div class="current-rating" style="width: 73.56321811676025%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.fms.speccy"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.reynoldssoft.sampler" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.reynoldssoft.sampler" data-server-cookie="CAIaIgogEh4KGGNvbS5yZXlub2xkc3NvZnQuc2FtcGxlchABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaIgogEh4KGGNvbS5yZXlub2xkc3NvZnQuc2FtcGxlchABGAM=" data-uitype="500" href="/store/apps/details?id=com.reynoldssoft.sampler" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Rodent's Vengeance the Sampler" data-cover-large="https://lh5.ggpht.com/RtWV_kvBWnF_hW0-b7QE9UG3qEfWejxeQw-N1y6fFvlzu-wuICBh12_DkzhnS79lVWcY=w340" data-cover-small="https://lh5.ggpht.com/RtWV_kvBWnF_hW0-b7QE9UG3qEfWejxeQw-N1y6fFvlzu-wuICBh12_DkzhnS79lVWcY=w170" src="https://lh5.ggpht.com/RtWV_kvBWnF_hW0-b7QE9UG3qEfWejxeQw-N1y6fFvlzu-wuICBh12_DkzhnS79lVWcY=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.reynoldssoft.sampler" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.reynoldssoft.sampler"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.reynoldssoft.sampler" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.reynoldssoft.sampler" title="Rodent's Vengeance the Sampler"> Rodent's Vengeance the Sampler <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=ReynoldsSoft" title="ReynoldsSoft">ReynoldsSoft</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.reynoldssoft.sampler"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Rodent&#39;s Vengeance Sampler is a rodent&#39;s Revenge clone. It is a subset of the game Rodent&#39;s Vengeance for Android and is intended to give the user an opportunity to try out its shared eight direction touch screen swipe interface. The touch interface does require practice and discipline, but I believe that not having to constantly look down at screen buttons or keyboard makes it the best possible option for supporting diagonal moves. Ultimately of course you are the one who will decide.<p>* implements diagonal, horizontal and vertical rodent moves!<br>* 5 levels of game play (levels 1 - 4, 6)<br>* rodent controlled by simple touch screen swipe gestures<br>* rodent may also be controlled by physical keyboard, using three interfaces<br>* current game saved when interrupted, or when you exit<br>* yarn activity can be turned off<br>* no advertizing! Play peacefully in the privacy of your own Android!</p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.reynoldssoft.sampler" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.reynoldssoft.sampler" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.1 stars out of five stars "> <div class="current-rating" style="width: 82.98507690429688%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.reynoldssoft.sampler"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.dylanpdx.blockybird" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.dylanpdx.blockybird" data-server-cookie="CAIaIQofEh0KF2NvbS5keWxhbnBkeC5ibG9ja3liaXJkEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaIQofEh0KF2NvbS5keWxhbnBkeC5ibG9ja3liaXJkEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.dylanpdx.blockybird" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Blocky Bird" data-cover-large="https://lh5.ggpht.com/1EyU1PoTgbLs-6rfIHBmKfTzRgRz-y0RvJ_Cu34hZ1yd5sBz1Nr53jXrHJ2loMVYvA=w340" data-cover-small="https://lh5.ggpht.com/1EyU1PoTgbLs-6rfIHBmKfTzRgRz-y0RvJ_Cu34hZ1yd5sBz1Nr53jXrHJ2loMVYvA=w170" src="https://lh5.ggpht.com/1EyU1PoTgbLs-6rfIHBmKfTzRgRz-y0RvJ_Cu34hZ1yd5sBz1Nr53jXrHJ2loMVYvA=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.dylanpdx.blockybird" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.dylanpdx.blockybird"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.dylanpdx.blockybird" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.dylanpdx.blockybird" title="Blocky Bird"> Blocky Bird <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Dylan+Grinberg" title="Dylan Grinberg">Dylan Grinberg</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.dylanpdx.blockybird"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Blocky Bird! Yet another spin-off to the now deleted Flappy Bird!<p>Tap to &#39;flap&#39;!<br>Go through the obstacles!<p>Compete with your friends!</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.dylanpdx.blockybird" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.dylanpdx.blockybird" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 75.5555534362793%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.dylanpdx.blockybird"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> <div class="rec-cluster" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygE" data-uitype="400"> <h1 class="heading">More from developer</h1> <div class="cards expandable"> <div class="card no-rationale square-cover apps small" data-docid="com.bluefroggaming.ghost_chicken" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.bluefroggaming.ghost_chicken" data-server-cookie="CAIaKgooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaKgooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Ghost Chicken" data-cover-large="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w340" data-cover-small="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w170" src="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.bluefroggaming.ghost_chicken"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" title="Ghost Chicken"> Ghost Chicken <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Blue+Frog+Gaming" title="Blue Frog Gaming">Blue Frog Gaming</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.ghost_chicken"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Enter the warped and kooky world of Ghost Chicken; a high-octane action game full of chills and thrills! Stretch the chicken’s neck to gobble up all the corn before time runs out. Release the chicken’s head to snap the neck back in. Be careful– creepy crawly bugs lurk in the dirt, so don’t let them bite! <p>Just in time for Halloween, Ghost Chicken throws you into a spooky world of ghoulishly challenging mazes that will make your head spin in fright! <p>• Test your speed and skill in the frantic Arcade Mode. <br>• Compete to set the high score in one of 4 difficulty modes. <br>• Unlock the devilishly tricky ‘Insane’ difficulty if you dare! <br>• Collect crazy power-ups to unleash awesome effects on your enemies. <br>• Tons of ghostly fun for all ages!<p>Keywords: Halloween, Ghost, Chicken, Arcade, Action, Spooky, Haunted, Creepy, Graveyard, Corn, Pac, Man, Retro, Game, Puzzle, Oils Well, Snake</p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 75.23809432983398%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.ghost_chicken"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div> </div></div><div class="overlay-background" style="display:none"></div><div class="overlay-wrapper" style="display:none"><div class="overlay-content-wrapper"><div id="overlay-content"></div></div></div><div style="clear:both"></div><div id="footer-content"> <button class="play-button" id="show-more-button" style="display:none"> Show More </button> <div class="bottom-loading" style="display:none"></div> <div class="footer"> <div class="footer-links-container"> <span class="copyright">©2014 Google</span> <a class="footer-link id-no-nav" href="https://play.google.com/intl/en-US_us/about/play-terms.html" target="_blank"> Site Terms of Service</a> <a class="footer-link id-no-nav" href="https://play.google.com/intl/en-US_us/about/device-terms.html" target="_blank"> Devices Terms of Sale</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/bin/answer.py?answer=1196018&amp;hl=en_US" target="_blank"> Privacy Policy</a> <a class="footer-link id-no-nav" href="http://developer.android.com/index.html" target="_blank"> Developers</a> <a class="footer-link id-no-nav" href="https://play.google.com/artists" target="_blank"> Artists</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/?p=about_play" target="_blank"> About Google</a> </div> </div> </div></div><div class="loading" id="page-load-indicator"></div><div id="audio-player"><audio autoplay="autoplay" id="html5Player"></audio></div><script>(function(){window._sc='[[null,\42\42,\42/store\42,\42/store/account\42,\42/store/movies\42,\42/store/music\42,\42/store/books\42,\42/store/newsstand\42,\42/store/apps\42,\42/store/devices\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\42,null,\42https://encrypted.google.com/complete/search?client\\u003dpartner\\u0026partnerid\\u003dskyjam-store\\u0026ds\\u003dcse\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\42,null,\42/\42,\42/play/log?format\\u003djson\42,null,\42https://play.google.com/intl/en-US_us/about/play-terms.html\42,\42https://support.google.com/googleplay/bin/answer.py?topic\\u003d2450225\\u0026answer\\u003d2479637\\u0026hl\\u003den_US\42,\42/store/buy\42,\42/store/install\42,\42/store/getpurchaseoutcome\42,\42/wishlist\42,\42/movies\42,\42/music?authuser\42,\42/books\42,\42/newsstand\42,\42/apps\42,\42/store/xhr/enablegpr\42,\42/store/xhr/deletereview\42,\42/store/xhr/ructx\42,\42/store/xhr/getuseraddress\42,\42/store/submitreview\42,\42/store/addtocart\42,\42/store/xhr/updatecart\42,\42https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\42,\42/store/xhr/rapcategories\42,\42/store/xhr/rapsubmit\42,\42/store/xhr/puc\42,\42/store/xhr/pulc\42,\42/store/xhr/getwatchembed\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\42,null,\42/store/xhr/mul\42,\42/store/xhr/getdoc\42,\42http://support.google.com/mobile/?p\\u003dbooks_formats\42,\42http://support.google.com/mobile/?p\\u003dbooks_devices\42,\42http://support.google.com/mobile/?p\\u003dbooks_androidapp\42,\42http://support.google.com/mobile/?p\\u003dbooks_iosapp\42,\42http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\42,\42/store/apps/details?id\\u003dcom.google.android.apps.books\42,\42/store/apps/details?id\\u003dcom.google.android.music\42,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42/store/apps/details?id\\u003dcom.google.android.apps.magazines\42,\42/store/xhr/topupopts\42,\42/store/setuserdata\42,\42/store/xhr/buynoco\42,\42/store/apps/collection/editors_choice\42,\42/store/apps/category/GAME\42,\42/store/account\42,\42/redeem\42,\42/store/xhr/getnumcartitems\42,\42/store/cart?modTime\\u003d0\42,\42/store/xhr/cancelsub\42,\42/store/xhr/dfph\42,\42https://play.google.com/intl/en-US_us/about/giftcards\42,\42/store/movies/category/MOVIE\42,\42/store/movies/category/TV\42,\42/store/cancelpreorder\42,\42http://support.google.com/googleplay/devices\42,\42/settings\42,\42/store/ratereview\42,\42/store/getdevicepermissions\42,\42/store/xhr/hide\42,\42/store/getreviews\42,\42/store/movies/collection/promotion_collections_movie_studios\42,\42/store/movies/collection/promotion_collections_tv_networks\42,\42/store/xhr/canceldeviceorder\42,\42https://plus.google.com/\42,\42https://wallet.google.com/updateCreditCard\42,\42/store/books/collection/promotion_1000568_txb_product\42,\42/store/xhr/experimenttoggler\42,\42https://support.google.com/googleplay/bin/answer.py?answer\\u003d1141080\42,null,\42/store/onewayredeem\42,\42https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\42,\42/store/xhr/getvariantrec\42,\42https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\42,\42https://play.google.com/intl/en-US_us/about/redeem-terms.html\42,\42/store/xhr/prepur\42,\42/store/xhr/comppurch\42,\42/store/xhr/getsimilarcluster\42,\42/store/xhr/getreviewannotation\42,\42/store/xhr/dismisssug\42,\42/store/xhr/getartistalbums\42,\42/store/myplayactivity\42,\42/store/opensearch.xml\42,\42https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\42,\42https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\42,\42https://support.google.com/googleplay/?p\\u003dreport_content\42,null,\42/store/order\42,\42https://play.google.com/intl/en-US_us/about/promo-terms.html\42,\42/store/xhr/gbp\42,\42/store/xhr/uninstall\42,\42/store/xhr/talentcontent\42,\42/store/approveitem\42,\42\42,\42/store/licenses/apps\42,\42/store/unapproveitem\42,\42/store/xhr/pglc\42,\42/store/xhr/assign\42]\n,1,1,[\42/store/search\42,\42Search\42]\n,\42UA-19995903-1\42,\42PROD\42,1,\42https://wallet.google.com/payments/widgets/instrument_creator.js\42,60000]\n';})();</script><script>(function(){window._uc='[null,\42\42,\42en\42,\42US\42,[[\0423f8ce17a\42,null,1,\42enable_loonie\42]\n,[\04272b063b1\42,null,1,\42enable_movies_chrome_app_integration\42]\n,[\42d661adf8\42,null,1,\42enable_enterprise_play_store\42]\n,[\04237ad289c\42,null,1,\42enable_hardware_cancel_redirect_on_success\42]\n,[\42cfc83a8f\42,null,1,\42enable_movie_device_setup_page\42]\n,[\429b884249\42,null,1,\42enable_strikethrough_price_in_book_cards\42]\n,[\429cd547a3\42,null,1,\42enable_enable_scs\42]\n,[\42b023b0c4\42,null,1,\42enable_music_preview_rights\42]\n,[\042628aa86c\42,null,1,\42enable_gift_card_payments_integrator_tokens\42]\n,[\0421e72ba8d\42,null,1,\42enable_flag_inappropriate\42]\n,[\04211cdcd88\42,null,1,\42enable_optimize_mobile\42]\n,[\4283a1c766\42,null,1,\42enable_grouping_app_permissions\42]\n,[\042196894ff\42,null,1,\42enable_books_consumer_rights_directive\42]\n,[\4283f335b0\42,null,1,\42enable_logging_to_odyssey\42]\n,[\42fd0884cc\42,null,1,\42enable_inapp_purchase_text\42]\n,[\42cd9bd9ce\42,null,1,\42enable_mobile_video_trailer\42]\n,[\0422b277ce0\42,null,1,\42enable_glass_discount\42]\n,[\42c57733ed\42,null,1,\42enable_talent_pages\42]\n,[\42b744e4cb\42,null,1,\42enable_signout_options_for_logout\42]\n,[\42e38df948\42,null,1,\42enable_finsky_wishlist_icon_adjust\42]\n,[\42c14f90b0\42,null,1,\42enable_corpus_menu_removal_for_mobile\42]\n,[\42f6caf8fb\42,null,1,\42enable_in_app_rap_fix\42]\n,[\42b0eb6535\42,null,1,\42enable_movies_subtitle_warning\42]\n]\n,0,null,0,null,null,[]\n,null,0,[\42nocache:laz\42,\42nocache:payments_flow_for_setup_stored_value\42,\42signed-out\42]\n,[5500133,5500047,5500130,5500028,5500117,5500146,5500079,5500149,5500128,5500118,5500138,5500011,5500125,5500120,5500143,5500123,5500101,5500098,5500111,5500084,5500112]\n,null,null,null,\42en-US\42]\n';})();</script><script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/3595310022-main_page_js_compiled_main_page_js.js"></script>
81
- <script>window.pressPlayCalled = false;if (typeof window.gapi != 'undefined' && !window.pressPlayCalled){window.pressPlayCalled = true;pressPlay();}
82
- </script><script type="text/javascript">(function(){var locale='en_US';window.___gcfg = {lang:locale,parsetags:'explicit'
83
- };(function(){function onGapiLoad(){if (typeof window.gapi != 'undefined'){window.gapi.load('plus:plusone:card:gapi.iframes:gapi.iframes.style.common',function (){if (!window.pressPlayCalled){window.pressPlayCalled = true;pressPlay();}
84
- window.gapi.plusone.go('body-content');window.gapi.plus.go();window.gapi.config.update('card/source','play.webstore');window.gapi.card.watch();window.gapi.iframes.getContext().restyleSelf({'show':'yes'});window.gapi.iframes.getContext().ready();});}
85
- }
86
- var po = document.createElement('script');po.type = 'text/javascript';po.async = true;po.src = 'https://apis.google.com/js/platform.js';if (!po.addEventListener){po.attachEvent('onload',onGapiLoad);}else {po.addEventListener('load',onGapiLoad,false);}
87
- var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po,s);})();})();</script><div id="instrument-manager-parent"></div><script src="https://wallet.google.com/inapp/lib/buy.js"></script><script type="text/javascript">(function(){var locale='en';google.payments.inapp.preload({'locale' :locale
88
- });})();</script><script type="text/javascript">(function(){var tracking_id='UA-19995903-1';(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
89
- })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',tracking_id);play_ga('send','pageview');})();</script></body></html><div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\75com.bluefroggaming.popdat';var nbp='[]\n';var sc='CAESJQgFIiESHwoZY29tLmJsdWVmcm9nZ2FtaW5nLnBvcGRhdBABGAM\075';var pgj=false;var di='com.bluefroggaming.popdat';var du=2;window.updateClient = function(){if (fu){if (pt){upt(pt);}
86
+ </style><link type='text/css' rel='stylesheet' href='//www.gstatic.com/_/play/_/ss/k=play.ss.1it4tzoc0qi2i.L.X.O/m=l/d=0/rs=AGlW0sbUgtCVXm3aMooke8qP25I43k54eQ'/><link type='text/css' rel='stylesheet' href='//www.gstatic.com/_/play/_/ss/k=play.ss.1it4tzoc0qi2i.L.X.O/m=l2/d=0/excm=l/ed=1/rs=AGlW0sbUgtCVXm3aMooke8qP25I43k54eQ'/><link href="//www.gstatic.com/android/market_images/web/favicon_v2.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Pop Dat - Android Apps on Google Play</title><meta content="Experience the next level of chain reaction games with ’Pop Dat’." name="description"><meta content="NOODP" name="robots"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" rel="canonical"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" hreflang="x-default" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=af" hreflang="af" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ms" hreflang="ms" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ca" hreflang="ca" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=cs" hreflang="cs" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=da" hreflang="da" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=de" hreflang="de" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=et" hreflang="et" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=en_GB" hreflang="en_GB" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=en" hreflang="en" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=es" hreflang="es" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=es_419" hreflang="es_419" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fil" hreflang="fil" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr_CA" hreflang="fr_CA" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr" hreflang="fr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hr" hreflang="hr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=in" hreflang="in" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zu" hreflang="zu" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=it" hreflang="it" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sw" hreflang="sw" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=lv" hreflang="lv" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=lt" hreflang="lt" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hu" hreflang="hu" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=nl" hreflang="nl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=no" hreflang="no" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pl" hreflang="pl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pt_BR" hreflang="pt_BR" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pt_PT" hreflang="pt_PT" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ro" hreflang="ro" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sk" hreflang="sk" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sl" hreflang="sl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fi" hreflang="fi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sv" hreflang="sv" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=vi" hreflang="vi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=tr" hreflang="tr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=el" hreflang="el" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=be" hreflang="be" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=bg" hreflang="bg" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ru" hreflang="ru" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sr" hreflang="sr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=uk" hreflang="uk" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ar" hreflang="ar" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=am" hreflang="am" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hi" hreflang="hi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=th" hreflang="th" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ko" hreflang="ko" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_HK" hreflang="zh_HK" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ja" hreflang="ja" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_CN" hreflang="zh_CN" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_TW" hreflang="zh_TW" rel="alternate"><meta content="website" property="og:type"><meta content="Pop Dat - Android Apps on Google Play" property="og:title"><meta content="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" property="og:url"><script type="text/javascript">(function(){var trackingId='UA-19995903-1';(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
87
+ })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',trackingId);})();</script></head><body jscontroller="W98pGb" jsmodel="tIclve" class="no-focus-outline" data-page-server-cookie="" jsaction="rcuQ6b:rcuQ6b"><div class="exports-controller" jscontroller="nW6Ps" jsaction="rcuQ6b:rcuQ6b"> <div jscontroller="Oqzoie" jsaction="rcuQ6b:rcuQ6b" jsid="cWJEXd" aria-hidden="true" style="display:none"></div> <div jscontroller="GwTZHe" jsname="YBV3Qc" aria-hidden="true" style="display:none"></div> <div jscontroller="ruD2Lc" jsaction="rcuQ6b:rcuQ6b" jsid="ckLvgd" aria-hidden="true" style="display:none"></div> <div jscontroller="kPgATb" jsaction="rcuQ6b:rcuQ6b" jsid="bpGqMc" aria-hidden="true" style="display:none"></div> <div jscontroller="lW11I" jsaction="rcuQ6b:rcuQ6b" jsid="Kyke" aria-hidden="true" style="display:none"></div> <div jscontroller="sZzYte" jsname="j8fyN" aria-hidden="true" style="display:none"></div> <div jscontroller="qoVwNc" jsname="bXVAae" aria-hidden="true" style="display:none"></div> <div jscontroller="DSu7Id" jsaction="rcuQ6b:rcuQ6b" jsid="s1WrZb" aria-hidden="true" style="display:none"></div> <div jscontroller="KrKwmf" jsaction="rcuQ6b:rcuQ6b" jsid="oN63A" aria-hidden="true" style="display:none"></div> <div jscontroller="XyGpve" jsaction="rcuQ6b:rcuQ6b" jsid="DjeHHf" aria-hidden="true" style="display:none"></div> <div jscontroller="eDmQYe" jsaction="rcuQ6b:rcuQ6b" jsid="kv4dP" aria-hidden="true" style="display:none"></div> <div jscontroller="l88Qmf" jsaction="rcuQ6b:rcuQ6b" jsid="F0Shh" aria-hidden="true" style="display:none"></div> <div jscontroller="bsXnnd" jsaction="rcuQ6b:rcuQ6b" jsid="vebwY" aria-hidden="true" style="display:none"></div> <div jscontroller="r8KIR" jsaction="rcuQ6b:rcuQ6b" jsid="RrzaCb" aria-hidden="true" style="display:none"></div> <div jscontroller="MTZ8td" jsaction="rcuQ6b:rcuQ6b" jsid="lj1M3d" aria-hidden="true" style="display:none"></div> <div jscontroller="PsOe6e" jsaction="rcuQ6b:rcuQ6b" jsid="uRW8Hc" aria-hidden="true" style="display:none"></div> <div jscontroller="ZzwEmb" jsaction="rcuQ6b:rcuQ6b" jsid="tz9uec" aria-hidden="true" style="display:none"></div> <div jscontroller="HozgP" jsaction="rcuQ6b:rcuQ6b" jsid="BAnWfc" aria-hidden="true" style="display:none"></div> <div jscontroller="AO5Sn" jsname="iTLdMd" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="TfvoCd" jsaction="rcuQ6b:rcuQ6b" jsid="IIjvCf" aria-hidden="true" style="display:none"></div> <div jscontroller="KIL8ye" jsaction="rcuQ6b:rcuQ6b" jsid="kbwoAc" aria-hidden="true" style="display:none"></div> <div jscontroller="Mdud6e" jsaction="rcuQ6b:rcuQ6b" jsid="KdZzQc" aria-hidden="true" style="display:none"></div> <div jscontroller="UHw3ec" jsaction="rcuQ6b:WaUj5e" jsid="LKidnb" aria-hidden="true" style="display:none"></div> <div jscontroller="ytepuf" jsaction="rcuQ6b:rcuQ6b" jsid="sVkCQd" aria-hidden="true" style="display:none"></div> <div jscontroller="ikRapd" jsaction="rcuQ6b:rcuQ6b" jsid="wr9wlf" aria-hidden="true" style="display:none"></div> <div jscontroller="vhibMc" jsname="YZUbh" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="kaKwge" jsname="SxWQk" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="a9ZUbe" jsaction="rcuQ6b:rcuQ6b" jsid="RnalDd" aria-hidden="true" style="display:none"></div> <div jscontroller="C9GUfc" jsaction="rcuQ6b:Rayp9d" jsid="tu7Lvd" aria-hidden="true" style="display:none"></div> <div jscontroller="epH9Oe" jsaction="rcuQ6b:rcuQ6b" jsid="bWnBoe" aria-hidden="true" style="display:none"></div> <div jscontroller="bPmHCb" jsaction="rcuQ6b:rcuQ6b" jsid="qtBlid" aria-hidden="true" style="display:none"></div> <div jscontroller="QA6GN" jsname="Q9oe6" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="cFXAie" jsaction="rcuQ6b:rcuQ6b" jsid="HytyXe" aria-hidden="true" style="display:none"></div> <div jscontroller="JrpMz" jsaction="rcuQ6b:rcuQ6b" jsid="aA8rpd" aria-hidden="true" style="display:none"></div> <div jscontroller="vDC9tb" jsaction="rcuQ6b:rcuQ6b" jsid="BeORrc" aria-hidden="true" style="display:none"></div> <div jscontroller="XO8nne" jsaction="rcuQ6b:rcuQ6b" jsid="WGUPf" aria-hidden="true" style="display:none"></div> <div jscontroller="WeJJhe" jsname="yvOiYb" aria-hidden="true" style="display:none"></div> <div jscontroller="n0yTLc" jsaction="rcuQ6b:rcuQ6b" jsid="nYgjCf" aria-hidden="true" style="display:none"></div> <div jscontroller="SmMcVd" jsname="mzgKYb" aria-hidden="true" style="display:none"></div> <div jscontroller="l8Wiqc" jsname="rq3vtb" aria-hidden="true" style="display:none"></div> <div jscontroller="Twm5Zc" jsname="x5Ei5c" aria-hidden="true" style="display:none"></div> <div jscontroller="Nqs1f" jsname="fEGBrd" jsaction="rcuQ6b:rcuQ6b" jsid="fEGBrd" aria-hidden="true" style="display:none"> <div jscontroller="qoVwNc" jsname="bXVAae" jsid="bXVAae" aria-hidden="true" style="display:none"></div> <div jscontroller="JYKBLd" jsname="WgWZrc" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="jO3TP" jsname="ODkgAf" jsaction="rcuQ6b:rcuQ6b" jsid="ODkgAf" aria-hidden="true" style="display:none"></div> <div jscontroller="PNVjMb" jsname="Jmc6Od" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="YK1sC" jsname="DCaEEd" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> </div> </div><div jscontroller="BngI6" class="keyboard-shortcuts-controller" aria-hidden="true" jsaction="rcuQ6b:rcuQ6b" style="display:none"></div><div jscontroller="XmMFlb" jsaction="rcuQ6b:npT2md;submit:GNwXB;input:w2SLu;focus:qKoZef"><div id=gbar><nobr><a class=gb1 href="https://www.google.com/webhp?tab=8w">Search</a> <a class=gb1 href="http://www.google.com/imghp?hl=en&tab=8i">Images</a> <a class=gb1 href="https://maps.google.com/maps?hl=en&tab=8l">Maps</a> <b class=gb1>Play</b> <a class=gb1 href="https://www.youtube.com/?tab=81">YouTube</a> <a class=gb1 href="https://news.google.com/nwshp?hl=en&tab=8n">News</a> <a class=gb1 href="https://mail.google.com/mail/?tab=8m">Gmail</a> <a class=gb1 href="https://drive.google.com/?tab=8o">Drive</a> <a class=gb1 style="text-decoration:none" href="https://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div></div><div id="offscreen-renderer" style="position:fixed;top:-100000px;left:-100000px;opacity:0"></div><div class="wrapper wrapper-with-footer" id="wrapper"><div jscontroller="KLl4Ne" style="display:block" jsaction="rcuQ6b:rcuQ6b"> <div class="id-nav-container nav-container hover-zone" style="visibility:hidden" data-server-cookie="CAMiGwgBEAAaFRITCg12ZXJ0aWNhbF9tZW51EBoYAA==" data-uitype="418"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav id-corpus-nav-list corpus-nav-list newicon" role="navigation"> <li class="nav-list-item id-track-click apps" data-backend="3" data-server-cookie="CAQqBggDEAMoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change selected" href="/store/apps"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Apps </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="103"> <a class="library-link id-no-menu-change" href="/apps"> My apps </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/apps"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/category/GAME"> Games </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/category/FAMILY"> Family </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/collection/editors_choice"> Editors' Choice </a> </li> </ul> </li> <li class="nav-list-item id-track-click movies-tv" data-backend="4" data-server-cookie="CAQqBggDEAQoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/movies"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Movies & TV </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="105"> <a class="library-link id-no-menu-change" href="/movies"> My movies & TV </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/movies"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/TV"> TV </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/FAMILY"> Family </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_movie_studios"> Studios </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_tv_networks"> Networks </a> </li> </ul> </li> <li class="nav-list-item id-track-click music" data-backend="2" data-server-cookie="CAQqBggDEAIoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/music"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Music </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="104"> <a class="library-link id-no-menu-change id-no-nav" href="/music?authuser"> My music </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/music"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click books" data-backend="1" data-server-cookie="CAQqBggDEAEoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/books"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Books </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="106"> <a class="library-link id-no-menu-change id-no-nav" href="/books"> My books </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/books"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/category/coll_1401"> Comics </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/collection/promotion_1001a15_textbooks"> Textbooks </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/category/coll_1689"> Children's Books </a> </li> </ul> </li> <li class="nav-list-item id-track-click magazines" data-backend="6" data-server-cookie="CAQqBggDEAYoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/newsstand"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title non-breaking-cjk"> Newsstand </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link id-no-menu-change id-track-click" data-uitype="121" href="/newsstand"> My newsstand </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/newsstand"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click devices" data-backend="5" data-server-cookie="CAQqBggDEAUoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/devices"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Devices </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/devices"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click entertainment" data-backend="0" data-server-cookie="CAQqBggDEAAoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Entertainment </span> </span> </a> </li> </ul> <div> <ul class="id-sub-nav-store shared-sub-nav"> <li class="secondary-sub-nav-option id-track-click" data-uitype="110"> <a class="sub-nav-link id-no-menu-change" href="/store/account"> <span>My account</span> </a> </li> <li class="secondary-sub-nav-option id-track-click" data-uitype="123"> <a class="sub-nav-link id-no-menu-change" href="/store/myplayactivity"> My Play activity </a> </li> <li class="secondary-sub-nav-option id-track-click" data-uitype="108"> <a class="sub-nav-link id-no-menu-change" href="/wishlist"> My wishlist </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen redeem-option id-track-click" data-uitype="109"> <button class="sub-nav-link id-no-menu-change id-no-nav"> Redeem </button> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click" data-uitype="125"> <a class="sub-nav-link" href="/store/gift"> Send gift </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click" data-uitype="128"> <button class="sub-nav-link id-no-menu-change topup-link"> Add credit </button> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click"> <a class="sub-nav-link id-no-menu-change" href="https://support.google.com/googleplay?p=pff_parentguide"> Parent Guide </a> </li> </ul> </div> </div> </div><div class="butterbar-container"><span id="butterbar"></span></div><div class="body-content-loading-overlay" style="display:none"><div class="body-content-loading-spinner"></div></div><script>(function(){window._sc='[[\x22/store/permissionsupdate\x22,\x22\x22,\x22/store\x22,\x22/store/account\x22,\x22/store/movies\x22,\x22/store/music\x22,\x22/store/books\x22,\x22/store/newsstand\x22,\x22/store/apps\x22,\x22/store/devices\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\x22,null,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d2\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\x22,null,\x22/\x22,\x22/play/log?format\\u003djson\x22,null,\x22https://play.google.com/intl/en-US_us/about/play-terms.html\x22,\x22https://support.google.com/googleplay/answer/2479637?topic\\u003d2450225\\u0026hl\\u003den_US\x22,null,\x22/store/install\x22,null,\x22/wishlist\x22,\x22/movies\x22,\x22/music?authuser\x22,\x22/books\x22,\x22/newsstand\x22,\x22/apps\x22,\x22/store/xhr/enablegpr\x22,\x22/store/xhr/deletereview\x22,\x22/store/xhr/ructx\x22,\x22/store/xhr/getuseraddress\x22,\x22/store/submitreview\x22,\x22/store/addtocart\x22,\x22/store/xhr/updatecart\x22,\x22https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\x22,\x22/store/xhr/rapcategories\x22,\x22/store/xhr/rapsubmit\x22,\x22/store/xhr/puc\x22,\x22/store/xhr/pulc\x22,\x22/store/xhr/getwatchembed\x22,\x22https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\x22,\x22https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\x22,null,\x22/store/xhr/mul\x22,\x22/store/xhr/getdoc\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_formats\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_devices\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_androidapp\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_iosapp\x22,\x22http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\x22,\x22/store/apps/details?id\\u003dcom.google.android.apps.books\x22,\x22/store/apps/details?id\\u003dcom.google.android.music\x22,\x22/store/apps/details?id\\u003dcom.google.android.videos\x22,\x22/store/apps/details?id\\u003dcom.google.android.apps.magazines\x22,\x22/store/xhr/topupopts\x22,\x22/store/setuserdata\x22,\x22/store/xhr/buynoco\x22,\x22/store/apps/collection/editors_choice\x22,\x22/store/apps/category/GAME\x22,\x22/store/account\x22,\x22/redeem\x22,null,\x22/store/cart?modTime\\u003d0\x22,\x22/store/xhr/cancelsub\x22,\x22/store/xhr/dfph\x22,\x22/store/gift\x22,\x22/store/movies/category/MOVIE\x22,\x22/store/movies/category/TV\x22,\x22/store/cancelpreorder\x22,\x22http://support.google.com/googleplay/devices\x22,\x22/settings\x22,\x22/store/ratereview\x22,\x22/store/getdevicepermissions\x22,\x22/store/xhr/hide\x22,\x22/store/getreviews\x22,\x22/store/movies/collection/promotion_collections_movie_studios\x22,\x22/store/movies/collection/promotion_collections_tv_networks\x22,\x22/store/xhr/canceldeviceorder\x22,\x22https://plus.google.com\x22,\x22https://wallet.google.com/updateCreditCard\x22,\x22/store/books/collection/promotion_1001a15_textbooks\x22,\x22/store/xhr/experimenttoggler\x22,\x22https://support.google.com/googleplay/?p\\u003dremote_install_error\x22,null,\x22/store/onewayredeem\x22,\x22https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\x22,\x22/store/xhr/getvariantrec\x22,\x22https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\x22,\x22https://play.google.com/intl/en-US_us/about/redeem-terms.html\x22,\x22/store/ees/xhr/prepur\x22,\x22/store/ees/xhr/comppurch\x22,\x22/store/xhr/getsimilarcluster\x22,\x22/store/xhr/getreviewannotation\x22,\x22/store/xhr/dismisssug\x22,\x22/store/xhr/getartistalbums\x22,\x22/store/myplayactivity\x22,\x22/store/opensearch.xml\x22,\x22https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\x22,\x22https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\x22,\x22https://support.google.com/googleplay/?p\\u003dreport_content\x22,null,\x22/store/order\x22,\x22https://play.google.com/intl/en-US_us/about/promo-terms.html\x22,\x22/store/xhr/gbp\x22,\x22/store/xhr/uninstall\x22,\x22/store/xhr/searchcontent\x22,\x22/store/approveitem\x22,\x22\x22,\x22/store/licenses/apps\x22,\x22/store/unapproveitem\x22,\x22/store/xhr/pglc\x22,\x22/store/xhr/assign\x22,\x22https://wallet.google.com\x22,\x22/store/xhr/accepttos\x22,\x22\x22,\x22/store/xhr/getassignments\x22,\x22/store/xhr/guided_help_get\x22,\x22/store/xhr/guided_help_set\x22,\x22/store/xhr/pp\x22,\x22/store/xhr/cp\x22,\x22/store/chrome\x22,\x22/store/teacheraccess\x22,\x22/store/apps/category/FAMILY\x22,\x22https://sandbox.google.com\x22,\x22/store/xhr/edu_get_enc_po_signup\x22,\x22/store/xhr/edu_create_po\x22,null,\x22/store/xhr/edu_getdelegatedusers\x22,\x22/store/pos\x22,\x22/store/books/category/coll_1689\x22,\x22/store/xhr/user_install\x22,\x22/store/movies/category/FAMILY\x22,\x22/store/xhr/getbulkpurchasehistory\x22,\x22/store/xhr/delegate\x22,\x22/store/xhr/edu_get_currency_code\x22,\x22https://support.google.com/googleplay/work/answer/6170898\x22,\x22/store/xhr/getpos\x22,\x22/store/xhr/grouplicenserefund\x22,\x22/store/xhr/ttd\x22,\x22/store/xhr/ttp\x22,\x22/store/xhr/managecontent\x22,\x22/store/xhr/getuseremail\x22,\x22/store/checkoutcart\x22,\x22/store/xhr/edu_ggast\x22,\x22/store/xhr/asa\x22,\x22/store/xhr/edu_getpodelegatedusers\x22,\x22/store/xhr/delegate_po\x22,\x22https://support.google.com/googleplay?p\\u003dpff_parentguide\x22,\x22https://support.google.com/googleplay?p\\u003dappgame_ratings\x22,\x22/store/xhr/edu_start_po_setup\x22,\x22https://support.google.com/googleplay/?p\\u003dpage_count_issues\x22,\x22https://support.google.com/books/partner/contact/report_offensive_content\x22,\x22/store/ereview\x22,\x22https://accounts.google.com/AccountChooser?service\\u003dgoogleplay\x22,\x22https://support.google.com/googleplay/answer/3401166#readaloud\x22,\x22/store/myrewards\x22,\x22/store/xhr/addresswidgetdata\x22,\x22/music/listen?signup\\u003d1\\u0026utm_source\\u003dplaystore\\u0026utm_medium\\u003dalbum_detail_page\\u0026utm_campaign\\u003d30daytrial\x22,\x22/store/xhr/edu_getdevicepermissions\x22,\x22/store/getfamilywalletsettings\x22,\x22/store/xhr/setfamilywalletsettings\x22,\x22https://play.google.com/intl/en-US_us/about/gift-terms.html\x22,\x22https://payments.google.com\x22,\x22https://store.google.com/terms/google_store_promo_codes\x22,\x22http://www.google.com/intl/en-US_us/policies/privacy/\x22,\x22/store/books/category/coll_1401\x22,\x22/store/xhr/recordtos\x22,null,\x22http://play.google.com/intl/en-US_us/about/giftcards/index.html?utm_source\\u003dplayui\\u0026utm_medium\\u003dlink\\u0026utm_campaign\\u003ddigitalgifts#giftcards-retailers\x22,\x22/store/xhr/addresswidgetdata\x22,\x22https://www.ftc.gov/system/files/documents/cases/140904googleplayorder.pdf\x22,\x22/store/xhr/createenterprise\x22,\x22/store/xhr/ent_prepurch\x22,\x22/store/xhr/ent_comppurch\x22,\x22/store/xhr/usi\x22,\x22https://payments.google.com/payments/v4/js/integrator.js?ss\\u003dn\x22,\x22/store/xhr/sharepurchase\x22,\x22https://clients2.google.com/gr/gr_sync.js\x22]\n,1,1,[\x22/store/search\x22,\x22Search\x22]\n,\x22UA-19995903-1\x22,\x22PROD\x22,1,\x22https://wallet.google.com/payments/widgets/instrument_creator.js\x22,60000,0,\x221\x22,0,1,1,0]\n';})();</script><script>(function(){window._uc='[null,\x22\x22,\x22en\x22,\x22US\x22,[[\x222f20b378\x22,null,1,\x22enable_family_wallet\x22]\n,[\x22ab23480d\x22,null,1,\x22enable_ads_supported_label_for_all_apps\x22]\n,[\x2229e13522\x22,null,1,\x22enable_hd_availability_tv_strings\x22]\n,[\x2237ad289c\x22,null,1,\x22enable_hardware_cancel_redirect_on_success\x22]\n,[\x22b023b0c4\x22,null,1,\x22enable_music_preview_rights\x22]\n,[\x229cd547a3\x22,null,1,\x22enable_enable_scs\x22]\n,[\x2283a1c766\x22,null,1,\x22enable_grouping_app_permissions\x22]\n,[\x222b277ce0\x22,null,1,\x22enable_glass_discount\x22]\n,[\x22cd9bd9ce\x22,null,1,\x22enable_mobile_video_trailer\x22]\n,[\x22f6caf8fb\x22,null,1,\x22enable_in_app_rap_fix\x22]\n,[\x226c45bbf7\x22,null,1,\x22enable_books_family_store\x22]\n,[\x22758f5f1b\x22,null,1,\x22enable_money_with_add_on\x22]\n,[\x22cfc83a8f\x22,null,1,\x22enable_movie_device_setup_page\x22]\n,[\x22d0e25706\x22,null,1,\x22enable_movies_family_store\x22]\n,[\x2272b063b1\x22,null,1,\x22enable_movies_chrome_app_integration\x22]\n,[\x221e72ba8d\x22,null,1,\x22enable_flag_inappropriate\x22]\n,[\x22860ff220\x22,null,1,\x22enable_enterprise_loonie\x22]\n,[\x22fd0884cc\x22,null,1,\x22enable_inapp_purchase_text\x22]\n,[\x2286cd3d0c\x22,null,1,\x22enable_newsstand_details_page_redesign\x22]\n,[\x22fd2d7ae8\x22,null,1,\x22enable_loonie_for_newsstand\x22]\n,[\x22b744e4cb\x22,null,1,\x22enable_signout_options_for_logout\x22]\n,[\x22e38df948\x22,null,1,\x22enable_finsky_wishlist_icon_adjust\x22]\n,[\x2226edeec1\x22,null,1,\x22enable_hydra_icons\x22]\n,[\x225d382d8c\x22,null,1,\x22enable_entertainment_home_home\x22]\n,[\x22c4ce7ad4\x22,null,1,\x22enable_smith_redirect\x22]\n]\n,0,null,0,null,null,[]\n,null,0,[\x22nocache:apps_family_store_enabled\x22,\x22nocache:books_family_store_enabled\x22,\x22nocache:laz\x22,\x22nocache:luffy_search_clusters_v1d:launch\x22,\x22nocache:movies_family_store_enabled\x22,\x22nocache:payments_flow_for_add_paypal\x22,\x22nocache:payments_flow_for_setup_stored_value\x22,\x22nocache:payments_flow_for_update_profile_at_purchase\x22,\x22signed-out\x22]\n,[5500217,5500186,5500344,5500276,5500356,5500033,5500166,5500131,5500112,5500172,5500120,5500125,5500211,5500079,5500133,5500364,5500118,5500165,5500185,5500267,5500233,5500162,5500285,5500216,5500348,5500259,5500286]\n,null,null,null,\x22en-US\x22,[2,null,null,null,null,null,null,null,[\x22en_US\x22]\n]\n,[]\n,\x22United States\x22,\x223eb450fa-3058-4b0b-ac51-fb302a07e306\x22]\n';})();</script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script><script src="//www.gstatic.com/_/play/_/js/k=play.js.en_US.EYALm8JT1Lk.O/m=base,m,i/rt=j/d=1/rs=AGlW0sY38yKTnmsJep9BHsMX5mykBECzKQ" id="base-js"></script><script>pressPlay();</script><script type="text/javascript">(function(){var locale='';window.___gcfg = {lang:locale,parsetags:'explicit'
88
+ };})();</script><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div class="action-bar-container" role="navigation" jsl="$t t-mtgV572_Ih8;$x 0;"> <div class="id-action-bar-inner action-bar-inner"> <div class="action-bar apps" jsl="$x 1;" jsan="7.action-bar,7.apps"> <div jsinstance="0" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;$t t-QH4hoG9vrLo;$x 0;" class="action-bar-dropdown-container" jsan="t-QH4hoG9vrLo,7.action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-Categories" aria-owns="action-dropdown-children-Categories" id="action-dropdown-parent-Categories" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title">Categories</span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="Categories" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-Categories" id="action-dropdown-children-Categories" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul jsl="$x 6;"> <li jsinstance="0" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;" style="display:none"> <a href="#" title="" jsl="$x 2;" jsan="8.href,0.title"></a> </li> <li class="submenu-divider" jsl="$x 3;" style="display:none"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/ANDROID_WEAR" title="Android Wear" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Android Wear</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BOOKS_AND_REFERENCE" title="Books &amp; Reference" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Books &amp; Reference</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BUSINESS" title="Business" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Business</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMICS" title="Comics" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Comics</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMMUNICATION" title="Communication" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Communication</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/EDUCATION" title="Education" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Education</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/ENTERTAINMENT" title="Entertainment" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Entertainment</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FINANCE" title="Finance" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Finance</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/HEALTH_AND_FITNESS" title="Health &amp; Fitness" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Health &amp; Fitness</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIBRARIES_AND_DEMO" title="Libraries &amp; Demo" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Libraries &amp; Demo</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIFESTYLE" title="Lifestyle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Lifestyle</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WALLPAPER" title="Live Wallpaper" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Live Wallpaper</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDIA_AND_VIDEO" title="Media &amp; Video" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Media &amp; Video</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDICAL" title="Medical" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Medical</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MUSIC_AND_AUDIO" title="Music &amp; Audio" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music &amp; Audio</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/NEWS_AND_MAGAZINES" title="News &amp; Magazines" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">News &amp; Magazines</a> </li><li jsinstance="16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PERSONALIZATION" title="Personalization" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Personalization</a> </li><li jsinstance="17" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PHOTOGRAPHY" title="Photography" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Photography</a> </li><li jsinstance="18" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PRODUCTIVITY" title="Productivity" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Productivity</a> </li><li jsinstance="19" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SHOPPING" title="Shopping" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Shopping</a> </li><li jsinstance="20" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SOCIAL" title="Social" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Social</a> </li><li jsinstance="21" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="22" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TOOLS" title="Tools" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Tools</a> </li><li jsinstance="23" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRANSPORTATION" title="Transportation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Transportation</a> </li><li jsinstance="24" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRAVEL_AND_LOCAL" title="Travel &amp; Local" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Travel &amp; Local</a> </li><li jsinstance="25" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/WEATHER" title="Weather" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Weather</a> </li><li jsinstance="*26" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WIDGETS" title="Widgets" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Widgets</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li><li jsinstance="1" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;"> <a class="parent-submenu-link" href="/store/apps/category/GAME" title="Games" jsl="$x 2;" jsan="7.parent-submenu-link,8.href,0.title">Games</a> </li> <li class="submenu-divider" jsl="$x 3;"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ACTION" title="Action" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Action</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ADVENTURE" title="Adventure" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Adventure</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ARCADE" title="Arcade" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Arcade</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_BOARD" title="Board" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Board</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CARD" title="Card" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Card</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASINO" title="Casino" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casino</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASUAL" title="Casual" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casual</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_EDUCATIONAL" title="Educational" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Educational</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_MUSIC" title="Music" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_PUZZLE" title="Puzzle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Puzzle</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_RACING" title="Racing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Racing</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ROLE_PLAYING" title="Role Playing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Role Playing</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SIMULATION" title="Simulation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Simulation</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_STRATEGY" title="Strategy" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Strategy</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_TRIVIA" title="Trivia" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Trivia</a> </li><li jsinstance="*16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_WORD" title="Word" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Word</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li><li jsinstance="*2" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;"> <a class="parent-submenu-link" href="/store/apps/category/FAMILY" title="Family" jsl="$x 2;" jsan="7.parent-submenu-link,8.href,0.title">Family</a> </li> <li class="submenu-divider" jsl="$x 3;"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE1" title="Ages 5 &amp; Under" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 5 &amp; Under</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE2" title="Ages 6-8" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 6-8</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE3" title="Ages 9 &amp; Up" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 9 &amp; Up</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/info/collection/promotion_family_popular_characters" title="Popular Characters" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Popular Characters</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_ACTION" title="Action &amp; Adventure" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Action &amp; Adventure</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_BRAINGAMES" title="Brain Games" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Brain Games</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_CREATE" title="Creativity" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Creativity</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_EDUCATION" title="Education" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Education</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_MUSICVIDEO" title="Music &amp; Video" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music &amp; Video</a> </li><li jsinstance="*9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_PRETEND" title="Pretend Play" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Pretend Play</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li> </ul> </div> </div> </div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="1" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="2" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">Home</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="3" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps/top" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">Top Charts</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="4" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps/new" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">New Releases</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="*5" jsl="$x 2;$t t-GqOCazsd7cI;$x 0;" class="action-bar-aux" jsan="t-GqOCazsd7cI,7.action-bar-aux"> <div jsinstance="0" jsl="$x 1;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;$t t-U4R0M3UJfzc;$x 0;" jscontroller="bJGPjf" class="action-bar-link action-bar-help play-button small id-track-click" data-uitype="112" title="Help" jsaction="rcuQ6b:rcuQ6b;L1KARc" jsvs="'bJGPjf';'rcuQ6b:rcuQ6b;L1KARc';" jsan="t-U4R0M3UJfzc,0.jscontroller,7.action-bar-link,7.action-bar-help,7.play-button,7.small,7.id-track-click,0.data-uitype,0.title,22.jsaction"> <span class="action-bar-link-title" jsl="$x 1;" jsan="7.action-bar-link-title"></span> </button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="*1" jsl="$x 1;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item settings-gear-menu play-button small" jsan="t-RAKlAzbC9gM,7.action-bar-item,7.settings-gear-menu,7.play-button,7.small"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div data-uitype="2905" jsl="$x 5;$t t-QH4hoG9vrLo;$x 0;" class="action-bar-dropdown-container" jsan="0.data-uitype,t-QH4hoG9vrLo,7.action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-" aria-label="Settings" aria-owns="action-dropdown-children-" id="action-dropdown-parent-" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-label,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title"></span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-" id="action-dropdown-children-" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul class="submenu-item-wrapper" jsl="$x 6;" jsan="7.submenu-item-wrapper"> <li jsinstance="0" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-qseNNdCvOYc;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/settings" title="Settings" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">Settings</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li><li jsinstance="*1" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-qseNNdCvOYc;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="https://www.google.com/android/devicemanager?hl=en_US" target="_blank" title="Android Device Manager" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.target,0.title">Android Device Manager</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li> </ul> </div> </div> </div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div> </div> </div> </div> </div><div class="body-content" itemscope="itemscope" itemtype="http://schema.org/MobileApplication" id="body-content" role="main"><meta content="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" itemprop="url"><div class="outer-container"><div class="inner-container"><div class="main-content"><div> <div class="details-wrapper apps square-cover id-track-partial-impression id-deep-link-item" data-deep-link-server-cookie="CAQqKQgEEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-deep-link-type="1" data-docid="com.bluefroggaming.popdat" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="209"> <div class="details-info"> <div class="cover-container"> <img class="cover-image" src="https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300" alt="Cover art" aria-hidden="true" itemprop="image"> </div> <div class="info-container"> <div class="document-title" itemprop="name"> <div class="id-app-title" tabindex="0">Pop Dat</div> </div> <div itemprop="author" itemscope="" itemtype="http://schema.org/Organization"> <meta content="/store/apps/developer?id=Blue+Frog+Gaming" itemprop="url"> <a class="document-subtitle primary" href="/store/apps/developer?id=Blue+Frog+Gaming"> <span itemprop="name">Blue Frog Gaming</span> </a> <div class="document-subtitle">- August 26, 2011</div> <div class="document-subtitle">-</div> <div class="document-subtitle content-rating-title">Unrated</div> </div> <div> <a class="document-subtitle category" href="/store/apps/category/GAME_ARCADE"> <span itemprop="genre">Arcade</span> </a> </div> <div> </div> <div class="details-actions"> <span> <span class="apps medium play-button buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.popdat"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="221"> <span> <span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <meta content="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;rdid=com.bluefroggaming.popdat&amp;rdot=1&amp;feature=md" itemprop="url"> <meta content="0" itemprop="price"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="Android" itemprop="name"> </span> </span> </span> <jsl jsl="$x 1;$t t-nH6Xd1T8X0Y;$x 0;"> <jsl jsl="$x 1;$t t-R7hS--kHwck;$x 0;"> <span jsl="$x 1;" style="display:none" jsan="5.display"></span> </jsl> </jsl> <span>Install</span> </button> </span> </span> <div jscontroller="bt3Kk" class="id-wishlist-display wishlist-display" jsaction="rcuQ6b:rcuQ6b"> <div class="wishlist-container id-track-click id-track-impression" data-enable-wishlist-icon-center="true" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="203"> <button class="play-button default wishlist-content userlist-yet-to-add" data-docid="com.bluefroggaming.popdat"> <div class="wishlist-icon"></div> <div class="wishlist-text"> <div class="wishlist-text-default wishlist-text-add id-track-click" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="204"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding" aria-hidden="true"> Adding... </div> <div class="wishlist-text-default wishlist-text-added id-track-impression" aria-label=" Remove from wishlist. "> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove id-track-click" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="205" aria-label=" Remove from wishlist. "> Remove </div> <div class="wishlist-text-default wishlist-text-removing" aria-hidden="true"> Removing... </div> </div> </button> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-item-added-msg" style="display:none"> Item added to wishlist. </span> </div> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-item-removed-msg" style="display:none"> Item removed from wishlist. </span> </div> </div> </div> </div> <div class="voucher-message id-voucher-message" style="display:none"></div> <div jscontroller="uT9F9" class="app-compatibility" data-docid="com.bluefroggaming.popdat" jsaction="rcuQ6b:Y7BZMd;h5M12e"> <div jsname="qTzz5c" class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div jsname="H4yxEf" class="app-compatibility-final" style="display:none"> <div jsname="OgDRCf" class="compatibility-image"></div> </div> <div> <div jscontroller="WxTtSc" jsname="xl07Ob" class="app-compatibility-device-list" tabindex="0" jsaction="hINwcc:ti6hGc;blur:ZYIfFd" style="display:none"> </div> </div> </div> <div class="details-info-divider"></div> <div class="header-star-badge"> <div class="stars-container"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.7 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 94.54545021057129%;"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small" aria-label=" 11 ratings "></span> 11) </div> </div> <div class="details-sharing-section"> <div class="plusone-container"> <div class="g-plusone" data-align="right" data-href="https://market.android.com/details?id=com.bluefroggaming.popdat" data-annotation="inline" data-recommendations="false" data-se="3" data-size="medium" data-source="google:market" data-width="240"></div> <script type="text/javascript">if (window.gapi && gapi.plusone){gapi.plusone.go("body-content");}
89
+ </script> </div> </div> </div> </div> <div class="details-section screenshots"> <div class="details-section-contents"> <div class="details-section-body expandable"> <div class="thumbnails-wrapper"> <div class="thumbnails" data-expand-target="thumbnails"> <img class="screenshot" data-expand-to="full-screenshot-0" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-2" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-3" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-4" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-5" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"> </div> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-5" data-expand-to="thumbnails" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <div class="details-section description simple contains-text-link"> <div class="details-section-contents show-more-container" jscontroller="G7YeLc" jsaction="rcuQ6b:rcuQ6b" data-show-use-buffer="true"> <div jscontroller="NlxvWb"> <h1 class="heading" tabindex="0"> Description </h1> <div class="show-more-content text-body" itemprop="description" tabindex="0"> <div jsname="C4s9Ed">An action-packed blend of split-second skill and luck-based gameplay! Set off consecutive chains of particles to rack up massive combos as the energy bar refills. Keep those explosions comin’ or else it’s Game Over!<p>Features:<br>• Addictive ‘Endurance Mode’ that gets more challenging the longer you play!<br>• Radiant, expressive, and colorful graphics that take full advantage of High Resolution Displays!<br>• Beat the high scores of your friends and climb the ranks with competitive Leaderboards!<br>• Toe-tappingly catchy soundtrack that highlights every ‘Pop’ and ‘Boom’ of the on-screen action!<br>• Updates packed with new features and goodies coming soon!</p></div> <div class="show-more-end" jsaction="click:vhaaFf"></div> </div> </div> <div> <button class="play-button show-more small" jsaction="KoToPc"> Read more </button> <button class="play-button expand-close" jsaction="vhaaFf"> <div class="close-image"> </div> </button> </div> </div> <div class="details-section-divider"></div> </div> </div> </div> <div class="details-wrapper apps" data-docid="com.bluefroggaming.popdat"> <div class="details-section highlighted-review" style="display:none"> <div class="highlighted-section-contents"> <div style="display:none" class="my-review-panel highlighted-review-panel" data-reviewid=""> <div class="review-row reviews-heading"> <div class="review-row-header heading"> My review </div> </div> <div class="review-panel-content"> <div class="review-image-row"> </div> <div class="review-author-stars"> <div class="review-author-name" style="display:none"> </div> <div class="review-stars-container"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" jsname="jIIjq" style="width: 0%;"></div> </div> </div> </div> <div class="review-row review-body-text"> <span class="review-title"></span> </div> <div class="review-action-button-container"> <button class="play-button icon-button small review-action-button-gap id-review-trash-button" aria-label=" Delete review. "> <div class="review-trash-button-icon"></div> </button> </div> <div class="review-row"> </div> </div> </div> <div style="display:none" class="highlighted-review-panel id-selected-review-panel" data-reviewid=""> <div class="review-row reviews-heading"> <div class="review-row-header heading"> <span> Review from <span style="display:none"></span> </span> </div> </div> <div class="review-panel-content"> <div class="review-image-row"> </div> <div class="review-author-stars"> <div class="review-author-name" style="display:none"> </div> <div class="review-stars-container"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" jsname="jIIjq" style="width: 0%;"></div> </div> </div> </div> <div class="review-row review-body-text"> <span class="review-title"></span> </div> <div class="rate-review-wrapper" style="display:none"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> <div class="review-row"> </div> </div> </div> </div> </div> <div class="details-section reviews"> <div class="details-section-contents"> <div class="details-section-heading"> <h1 class="heading"> Reviews </h1> <div class="review-actions id-track-click" data-uitype="206"> <div class="review-filters" data-expanded-only="true" style="display:none"> <div class="review-filter id-review-sort-filter dropdown-menu-container" jsl="$t t-iOmsrJCHA3E;$x 0;"> <button class="dropdown-menu" aria-haspopup="true"> <span class="displayed-child"><jsl jsl="$x 1;">Helpfulness</jsl></span> <div class="dropdown-icon"></div> </button> <div class="dropdown-menu-children"> <ul> <jsl jsl="$x 2;"> <li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child" data-dropdown-value="0" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Newest</jsl> </button> </li><li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child" data-dropdown-value="1" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Rating</jsl> </button> </li><li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child selected" data-dropdown-value="2" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,7.selected,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Helpfulness</jsl> </button> </li> </jsl> </ul> </div> </div><div class="review-filter id-review-version-filter dropdown-menu-container" jsl="$t t-iOmsrJCHA3E;$x 0;"> <button class="dropdown-menu" aria-haspopup="true"> <span class="displayed-child"><jsl jsl="$x 1;">All Versions</jsl></span> <div class="dropdown-icon"></div> </button> <div class="dropdown-menu-children"> <ul> <jsl jsl="$x 2;"> <li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child selected" data-dropdown-value="" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,7.selected,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">All Versions</jsl> </button> </li><li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child" data-dropdown-value="2" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Latest Version</jsl> </button> </li> </jsl> </ul> </div> </div> </div> <button class="id-write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a Review </span> </button> <button class="id-edit-button play-button" style="display:none"> <span class="write-review-button-icon"></span> <span> Edit Review </span> </button> </div> </div> <div class="details-section-body expandable" data-done-fetching="true" data-load-more-docid="com.bluefroggaming.popdat" data-load-more-section-id="reviews"> <div class="preview-panel"> <div class="preview-reviews multicol" data-multicol-fixed-height="true" data-multicol-width="auto"> <div class="rating-box"> <div class="score-container" itemprop="aggregateRating" itemscope="itemscope" itemtype="http://schema.org/AggregateRating"> <meta content="4.7272725105285645" itemprop="ratingValue"> <meta content="11" itemprop="ratingCount"> <div class="score" aria-label=" Rated 4.7 stars out of five stars ">4.7</div> <div class="score-container-star-rating"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated 4.7 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 94.54545021057129%;"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num" aria-label=" 11 ratings ">11</span> total </div> </div> <div class="rating-histogram"> <div class="rating-bar-container five"> <span class="bar-label"> <span class="star-tiny star-full"></span>5 </span> <span class="bar" style="width:100%"></span> <span class="bar-number" aria-label=" 10 ratings ">10</span> </div><div class="rating-bar-container four"> <span class="bar-label"> <span class="star-tiny star-full"></span>4 </span> <span class="bar" style="width:0"></span> <span class="bar-number" aria-label=" 0 ratings ">0</span> </div><div class="rating-bar-container three"> <span class="bar-label"> <span class="star-tiny star-full"></span>3 </span> <span class="bar" style="width:0"></span> <span class="bar-number" aria-label=" 0 ratings ">0</span> </div><div class="rating-bar-container two"> <span class="bar-label"> <span class="star-tiny star-full"></span>2 </span> <span class="bar" style="width:10%"></span> <span class="bar-number" aria-label=" 1 ratings ">1</span> </div><div class="rating-bar-container one"> <span class="bar-label"> <span class="star-tiny star-full"></span>1 </span> <span class="bar" style="width:0"></span> <span class="bar-number" aria-label=" 0 ratings ">0</span> </div> </div> </div> <div class="featured-review" data-expand-to="user-0" data-reviewid="lg:AOqpTOFLotRWWL8F50O4eRjgG4qLIdxscdhqfgUYPIXPFSKdYST3akGCq1AbpwN5AIC2cL0A_IusaIg0iNeX9Q" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 40%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Nearly fell asleep</span> There's potential but watching the little dots move around with nothing to do for seconds at a time. Plus, the sharing scores with friends didn't work <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-1" data-reviewid="lg:AOqpTOEP10sdyLzTvD5K-uaeuxd5p5Nvxty2sZH1l0n4XiI53kT8PKlxbRA-W_9ApKTCF7SeuVdI45AmOf6Ccg" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Addicting. Great sound and music <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-2" data-reviewid="lg:AOqpTOH5CGpJIWhh85M3LbdvavtQqvFV6Zku_0g6C03cLvtlNLc_cN-rM6z9Tb4CpdujAwMgj3AZt4yG5JdxKw" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Nostalgic <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-3" data-reviewid="lg:AOqpTOHRVyUFOWdcf3fdXadmV5O7BhgOmA5XpAmvafelzLR6l-AmdeDkf7dKgnBr76glGq3zCtsNHWJ89zYANA" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Fun and Addicting!</span> Before I know it, I've spent hours trying for a new high score. The game is extremely fun and keeps you interested as your strive for your longest chain reaction and a new high score! <div class="paragraph-end details-light"></div> </div> </div> </div> </div> </div> </div> <div style="display:none" class="all-reviews multicol" data-expand-scroll="true" data-multicol-fixed-height="true"> <div> <div class="reviews-heading"> User reviews </div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-0" data-reviewid="lg:AOqpTOFLotRWWL8F50O4eRjgG4qLIdxscdhqfgUYPIXPFSKdYST3akGCq1AbpwN5AIC2cL0A_IusaIg0iNeX9Q"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">September 12, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPRkxvdFJXV0w4RjUwTzRlUmpnRzRxTElkeHNjZGhxZmdVWVBJWFBGU0tkWVNUM2FrR0NxMUFicHdONUFJQzJjTDBBX0l1c2FJZzBpTmVYOVE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 40%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Nearly fell asleep</span> There's potential but watching the little dots move around with nothing to do for seconds at a time. Plus, the sharing scores with friends didn't work <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-1" data-reviewid="lg:AOqpTOEP10sdyLzTvD5K-uaeuxd5p5Nvxty2sZH1l0n4XiI53kT8PKlxbRA-W_9ApKTCF7SeuVdI45AmOf6Ccg"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">November 19, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPRVAxMHNkeUx6VHZENUstdWFldXhkNXA1TnZ4dHkyc1pIMWwwbjRYaUk1M2tUOFBLbHhiUkEtV185QXBLVENGN1NldVZkSTQ1QW1PZjZDY2c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> Addicting. Great sound and music <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-2" data-reviewid="lg:AOqpTOH5CGpJIWhh85M3LbdvavtQqvFV6Zku_0g6C03cLvtlNLc_cN-rM6z9Tb4CpdujAwMgj3AZt4yG5JdxKw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">September 3, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPSDVDR3BKSVdoaDg1TTNMYmR2YXZ0UXF2RlY2Wmt1XzBnNkMwM2NMdnRsTkxjX2NOLXJNNno5VGI0Q3BkdWpBd01najNBWnQ0eUc1SmR4S3c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> Nostalgic <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-3" data-reviewid="lg:AOqpTOHRVyUFOWdcf3fdXadmV5O7BhgOmA5XpAmvafelzLR6l-AmdeDkf7dKgnBr76glGq3zCtsNHWJ89zYANA"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">August 28, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPSFJWeVVGT1dkY2YzZmRYYWRtVjVPN0JoZ09tQTVYcEFtdmFmZWx6TFI2bC1BbWRlRGtmN2RLZ25Ccjc2Z2xHcTN6Q3RzTkhXSjg5ellBTkE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Fun and Addicting!</span> Before I know it, I've spent hours trying for a new high score. The game is extremely fun and keeps you interested as your strive for your longest chain reaction and a new high score! <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-review-deleted-msg" style="display:none"> Review deleted </span> </div> <script>if (typeof ircs == 'undefined'){jQuery('body').one('onExportsReady',function(){ircs();});}else {ircs();}
90
+ </script> </div> <div class="details-wrapper"> <div class="details-section metadata"> <div class="details-section-heading"> <h1 class="heading"> Additional information </h1> </div> <div class="details-section-contents"> <div class="meta-info"> <div class="title">Updated</div> <div class="content" itemprop="datePublished">August 26, 2011</div> </div> <div class="meta-info"> <div class="title">Size</div> <div class="content" itemprop="fileSize"> 9.0M </div> </div> <div class="meta-info"> <div class="title">Installs</div> <div class="content" itemprop="numDownloads"> 500 - 1,000 </div> </div> <div class="meta-info"> <div class="title">Current Version</div> <div class="content" itemprop="softwareVersion"> 1.0 </div> </div> <div class="meta-info"> <div class="title">Requires Android</div> <div class="content" itemprop="operatingSystems"> 2.2 and up </div> </div> <div class="meta-info contains-text-link"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating">Unrated</div> <div class="content">Warning – content has not yet been rated. Unrated apps may potentially contain content appropriate for mature audiences only.</div> <a class="content" href="https://support.google.com/googleplay?p=appgame_ratings" target="_blank">Learn more</a> </div> <div class="meta-info"> <div class="title">Permissions</div> <button class="content id-view-permissions-details fake-link" data-docid="com.bluefroggaming.popdat"> View details </button> </div> <div class="meta-info contains-text-link"> <div class="title">Report</div> <a class="content" href="https://support.google.com/googleplay/?p=report_content" target="_blank"> Flag as inappropriate </a> </div> <div class="meta-info"> <div class="title"> Offered By </div> <div class="content">Blue Frog Gaming</div> </div> <div class="meta-info"> <div class="title"> Developer </div> <div class="content contains-text-link"> <a class="dev-link" href="https://www.google.com/url?q=http://bluefroggaming.com&amp;sa=D&amp;usg=AFQjCNFJZLN9txV8hct_LYh5XkBJbNBhiQ" rel="nofollow" target="_blank"> Visit website </a> <a class="dev-link" href="mailto:support@hdgames.zendesk.com" rel="nofollow" target="_blank"> Email support@hdgames.zendesk.com </a> </div> </div> </div> <div class="details-section-divider"></div> </div> </div><div class="details-wrapper"> <div class="id-cluster-container details-section recommendation"> <div class="details-section-contents"> <div class="rec-cluster" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-uitype="400"> <h1 class="heading"> Similar </h1> <div class="cards expandable id-card-list"> <div class="card no-rationale square-cover apps small" data-docid="si.custom.snake" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="si.custom.snake" data-server-cookie="CAIaGwoXEhUKD3NpLmN1c3RvbS5zbmFrZRABGANCAA==" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaGwoXEhUKD3NpLmN1c3RvbS5zbmFrZRABGANCAA==" data-uitype="500" href="/store/apps/details?id=si.custom.snake" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Dat Snake" class="cover-image" data-cover-large="//lh5.ggpht.com/liehEjWse38Ij83K0rB758LeAN4eAdCkAVfKGo7injmii7ZZ7568q0zUWYOAUOuDjXIt=w340" data-cover-small="//lh5.ggpht.com/liehEjWse38Ij83K0rB758LeAN4eAdCkAVfKGo7injmii7ZZ7568q0zUWYOAUOuDjXIt=w170" src="//lh5.ggpht.com/liehEjWse38Ij83K0rB758LeAN4eAdCkAVfKGo7injmii7ZZ7568q0zUWYOAUOuDjXIt=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=si.custom.snake" aria-label=" Dat Snake "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="si.custom.snake"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=si.custom.snake" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=si.custom.snake" title="Dat Snake" aria-hidden="true" tabindex="-1"> Dat Snake <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Oranza+Kreativna+Komunikacija" title="Oranza Kreativna Komunikacija">Oranza Kreativna Komunikacija</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="si.custom.snake"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaGwoXEhUKD3NpLmN1c3RvbS5zbmFrZRABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Best snake game on Android Platform. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=si.custom.snake" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=si.custom.snake"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5.0 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="si.custom.snake"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaGwoXEhUKD3NpLmN1c3RvbS5zbmFrZRABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div> </div> <div class="more-from-developer"> <div class="details-wrapper"> <div class="id-cluster-container details-section recommendation"> <div class="details-section-contents"> <div class="rec-cluster" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-uitype="400"> <h1 class="heading"> <a class="title-link id-track-click" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-uitype="291" href="/store/apps/developer?id=Blue+Frog+Gaming">More from developer</a> </h1> <div class="cards expandable id-card-list"> <div class="card no-rationale square-cover apps medium-long" data-docid="com.bluefroggaming.ghost_chicken" data-original-classes="card no-rationale square-cover apps medium-long" data-short-classes="card no-rationale square-cover apps medium-long" data-thin-classes="card no-rationale square-cover apps medium-long"> <div class="card-content id-track-click id-track-impression" data-docid="com.bluefroggaming.ghost_chicken" data-server-cookie="CAIaLAooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaLAooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Ghost Chicken" class="cover-image" data-cover-large="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w340" data-cover-small="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w170" src="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-label=" Ghost Chicken "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.bluefroggaming.ghost_chicken"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" title="Ghost Chicken" aria-hidden="true" tabindex="-1"> Ghost Chicken <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Blue+Frog+Gaming" title="Blue Frog Gaming">Blue Frog Gaming</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.ghost_chicken"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaLAooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Don&#39;t be a chicken. Play Ghost Chicken! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.bluefroggaming.ghost_chicken"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.9 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 77.2580623626709%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.ghost_chicken"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaLAooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div><div class="secondary-content"></div></div></div></div><div class="overlay-background" style="display:none"></div><div class="overlay-wrapper" style="display:none"><div class="overlay-content-wrapper"><div id="overlay-content"></div></div></div><div style="clear:both"></div><div jscontroller="n9NDF" id="footer-content" jsaction="FibEpb:dwbRB"> <button class="play-button" id="show-more-button" style="display:none"> Show More </button> <div class="bottom-loading" style="display:none"></div> <div class="footer"> <div class="footer-links-container"> <span class="copyright"> ©2016 Google</span> <a class="footer-link id-no-nav" href="https://play.google.com/intl/en-US_us/about/play-terms.html" target="_blank"> Site Terms of Service</a> <a class="footer-link id-no-nav" href="http://www.google.com/intl/en-US_us/policies/privacy/" target="_blank"> Privacy Policy</a> <a class="footer-link id-no-nav" href="http://developer.android.com/index.html" target="_blank"> Developers</a> <a class="footer-link id-no-nav" href="https://play.google.com/artists" target="_blank"> Artists</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/?p=about_play" target="_blank"> About Google</a> <div jsname="Gvbqzc" class="contains-text-link"> <span> By purchasing this item, you are transacting with Google Payments and agreeing to the Google Payments <a href="https://payments.google.com/termsOfService?hl=en_US" target="_blank"> Terms of Service </a> and <a href="https://payments.google.com/legaldocument?family=0.privacynotice&amp;hl=en_US" target="_blank"> Privacy Notice </a>. </span> </div> </div> </div> </div></div><div class="loading" jscontroller="EgJAl" jsaction="rcuQ6b:rcuQ6b" id="page-load-indicator"></div><div id="instrument-manager-parent"></div><div> <div jscontroller="zIhZNe" data-is-details-page="true" data-my-account-action-required="false" jsaction="rcuQ6b:npT2md"></div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\x3dcom.bluefroggaming.popdat';var nbp='';var sc='CAESJQgFIiESHwoZY29tLmJsdWVmcm9nZ2FtaW5nLnBvcGRhdBABGAM\x3d';var pgj=false;var di='com.bluefroggaming.popdat';var du=2;window.updateClient = function(){if (fu){if (pt){upt(pt);}
90
91
  if (ab){uab(ab);}
91
92
  if (lmt){ihc(lmt);}
92
- if (nbp && typeof snbp != 'undefined'){snbp(nbp);}
93
+ if (nbp && typeof snbp != 'undefined'){snbp(nbp);}else {icfl();}
93
94
  if (curl){sglc(curl);}
94
95
  if (pgj){if (gapi && gapi.plus && gapi.plus.go){gapi.plus.go();}
95
96
  }
96
97
  upba(di,du);usc(sc);}
97
- }
98
- if (window.pressPlayCalled){window.updateClient();}
99
- })();</script> </div>
98
+ };if (window.exportsReady){window.updateClient();}else {jQuery('body').one('onExportsReady',function(){window.updateClient();});}
99
+ })();</script> </div></body></html>