ruby-oembed 0.10.0 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 157ea3df0d0f3d89bc48f062c3db9825d1a2b381
4
- data.tar.gz: 83c9d7ed8298497fa8d58451977e0605475abd51
3
+ metadata.gz: 5cef68e158911636d20ce036c5b25432b4800307
4
+ data.tar.gz: 882c99fd5b88328c792d1fd46303341543f9c364
5
5
  SHA512:
6
- metadata.gz: 3da1c0b22069ff15ae39153c2fc7efc3a249e26564ab86577f2ecd58707312187f777882b125e7e6d98cbb9568314545cfaff833f4e6f1decabdd117cc9001dc
7
- data.tar.gz: 578994a5dea31536fdd73a09a6cbc1a37f1b47e49a0dfaaf769a8406ec4eb4e7e81414dbe0e50e68cdd9f9f626fd62d113dc7e02f5cd39589e4f0e21fae3b24d
6
+ metadata.gz: 12cce935dfb922fa4178856b37beb57b200e686b0e7010ccc4084de3f8a495ce129641282443e3b0a41f63220d7b8ea899e43b4c346d72856bddfbf78a91db46
7
+ data.tar.gz: 836d7d99c3dade5acf086e53b958c4a9e2cf9cb0912bea2b4277afbdcadd075be799c2b13ed39a5012a6c7418f4be368ac79577a6b0d76b566b3b8c1c2c9cd80
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,11 @@
1
1
  = CHANGELOG
2
2
 
3
+ == 0.10.1 - 21 May 2016
4
+
5
+ * Update built-in Twitter provider to use the new Twitter oEmbed endpoint; Pull #60 (Ben Ramsey)
6
+ * Update built-in SlideShare provider to accept https URLs and URLs from various subdomains; Pull #59 (Axel Wahlen)
7
+ * Updated the list of {Embedly}[http://embed.ly] URL schemes. (Marcos Wright-Kuhns)
8
+
3
9
  == 0.10.0 - 6 March 2016
4
10
 
5
11
  * Add built-in Tumblr provider; Pull #55 (unknown)
data/Gemfile CHANGED
@@ -10,6 +10,8 @@ gem 'bundler', '~>1.10'
10
10
 
11
11
  gemspec
12
12
 
13
+ gem 'coveralls', require: false
14
+
13
15
  group :guard do
14
16
  gem "guard-rspec"
15
17
  gem "guard-bundler"
data/README.md ADDED
@@ -0,0 +1,104 @@
1
+ # ruby-oembed
2
+
3
+ [![Gem](https://img.shields.io/gem/v/ruby-oembed.svg)](https://rubygems.org/gems/ruby-oembed)
4
+ [![Travis branch](https://img.shields.io/travis/ruby-oembed/ruby-oembed/master.svg)](https://travis-ci.org/ruby-oembed/ruby-oembed/branches)
5
+ [![Code Climate](https://img.shields.io/codeclimate/github/ruby-oembed/ruby-oembed.svg)](https://codeclimate.com/github/ruby-oembed/ruby-oembed)
6
+ [![Coveralls](https://coveralls.io/repos/github/ruby-oembed/ruby-oembed/badge.svg?branch=coveralls)](https://coveralls.io/github/ruby-oembed/ruby-oembed?branch=coveralls)
7
+ ![Maintenance](https://img.shields.io/maintenance/yes/2016.svg)
8
+
9
+
10
+ An oEmbed consumer library written in Ruby, letting you easily get embeddable HTML representations of supported web pages, based on their URLs. See [oembed.com](http://oembed.com) for more about the protocol.
11
+
12
+ # Installation
13
+
14
+ gem install ruby-oembed
15
+
16
+ # Get Started
17
+
18
+ ## Providers
19
+
20
+ Get information about a URL via an OEmbed::Provider. This library comes with many Providers built right in, to make your life easy.
21
+
22
+ ```ruby
23
+ resource = OEmbed::Providers::Youtube.get("http://www.youtube.com/watch?v=2BYXBC8WQ5k")
24
+ resource.video? #=> true
25
+ resource.thumbnail_url #=> "http://i3.ytimg.com/vi/2BYXBC8WQ5k/hqdefault.jpg"
26
+ resource.html #=> <<-HTML
27
+ <object width="425" height="344">
28
+ <param name="movie" value="http://www.youtube.com/v/2BYXBC8WQ5k?fs=1"></param>
29
+ <param name="allowFullScreen" value="true"></param>
30
+ <param name="allowscriptaccess" value="always"></param>
31
+ <embed src="http://www.youtube.com/v/2BYXBC8WQ5k?fs=1" type="application/x-shockwave-flash" width="425" height="344" allowscriptaccess="always" allowfullscreen="true"></embed>
32
+ </object>
33
+ HTML
34
+ ```
35
+
36
+ If you'd like to use a provider that isn't included in the library, it's easy to create one. Just provide the oEmbed API endpoint and URL scheme(s).
37
+
38
+ ```ruby
39
+ my_provider = OEmbed::Provider.new("http://my.cool-service.com/api/oembed_endpoint.{format}")
40
+ my_provider << "http://*.cool-service.com/image/*"
41
+ my_provider << "http://*.cool-service.com/video/*"
42
+ resource = my_provider.get("http://a.cool-service.com/video/1") #=> OEmbed::Response
43
+ resource.provider.name #=> "My Cool Service"
44
+ ```
45
+
46
+ To use multiple Providers at once, simply register them.
47
+
48
+ ```ruby
49
+ OEmbed::Providers.register(OEmbed::Providers::Youtube, my_provider)
50
+ resource = OEmbed::Providers.get("http://www.youtube.com/watch?v=2BYXBC8WQ5k") #=> OEmbed::Response
51
+ resource.type #=> "video"
52
+ resource.provider.name #=> "Youtube"
53
+ ```
54
+
55
+ Last but not least, ruby-oembed supports both [oohEmbed](http://oohembed.com) and [Embedly](http://embed.ly). These services are provider aggregators. Each supports a wide array of websites ranging from [Amazon.com](http://www.amazon.com) to [xkcd](http://www.xkcd.com).
56
+
57
+ ## Formatters
58
+
59
+ This library works wonderfully on its own, but can get a speed boost by using 3rd party libraries to parse oEmbed data. To use a 3rd party Formatter, just be sure to require the library _before_ ruby-oembed.
60
+
61
+ ```ruby
62
+ require 'json'
63
+ require 'xmlsimple'
64
+ require 'oembed'
65
+
66
+ OEmbed::Formatter::JSON.backend #=> OEmbed::Formatter::JSON::Backends::JSONGem
67
+ OEmbed::Formatter::XML.backend #=> OEmbed::Formatter::XML::Backends::XmlSimple
68
+ ```
69
+
70
+ The following, optional, backends are currently supported:
71
+ * The [JSON implementation for Ruby](http://flori.github.com/json/)
72
+ * Rails' ActiveSupport::JSON (confirmed to work with Rails 3.0.x and should work with Rails 2.0+)
73
+ * [XmlSimple](http://xml-simple.rubyforge.org/)
74
+
75
+ # Lend a Hand
76
+
77
+ Code for the ruby-oembed library is [hosted on GitHub](https://github.com/ruby-oembed/ruby-oembed).
78
+
79
+ ```bash
80
+ # Get the code.
81
+ git clone git://github.com/ruby-oembed/ruby-oembed.git
82
+ cd ruby-oembed
83
+ # Install all development-related gems.
84
+ gem install bundler
85
+ bundle install
86
+ # Run the tests.
87
+ bundle exec rake
88
+ # or run the test continually
89
+ bundle exec guard
90
+ ```
91
+
92
+ If you encounter any bug, feel free to [create an Issue](https://github.com/ruby-oembed/ruby-oembed/issues).
93
+
94
+ We gladly accept pull requests! Just [fork](http://help.github.com/forking/) the library and commit your changes along with relevant tests. Once you're happy with the changes, [send a pull request](http://help.github.com/pull-requests/).
95
+
96
+ We do our best to [keep our tests green](http://travis-ci.org/ruby-oembed/ruby-oembed)
97
+
98
+ # Contributors
99
+
100
+ Thanks to [all who have made contributions](https://github.com/ruby-oembed/ruby-oembed/contributors) to this gem, both large and small.
101
+
102
+ # License
103
+
104
+ This code is free to use under the terms of the MIT license.
@@ -183,7 +183,7 @@ module OEmbed
183
183
 
184
184
  # Provider for twitter.com
185
185
  # https://dev.twitter.com/rest/reference/get/statuses/oembed
186
- Twitter = OEmbed::Provider.new("https://api.twitter.com/1/statuses/oembed.{format}")
186
+ Twitter = OEmbed::Provider.new("https://publish.twitter.com/oembed", :json)
187
187
  Twitter << "https://*.twitter.com/*/status/*"
188
188
  add_official_provider(Twitter)
189
189
 
@@ -227,8 +227,10 @@ module OEmbed
227
227
  # Provider for slideshare.net
228
228
  # http://www.slideshare.net/developers/oembed
229
229
  Slideshare = OEmbed::Provider.new("https://www.slideshare.net/api/oembed/2")
230
- Slideshare << "http://www.slideshare.net/*/*"
231
- Slideshare << "http://www.slideshare.net/mobile/*/*"
230
+ Slideshare << 'http://*.slideshare.net/*/*'
231
+ Slideshare << 'https://*.slideshare.net/*/*'
232
+ Slideshare << 'http://*.slideshare.net/mobile/*/*'
233
+ Slideshare << 'https://*.slideshare.net/mobile/*/*'
232
234
  add_official_provider(Slideshare)
233
235
 
234
236
  # Provider for yfrog
@@ -6,6 +6,7 @@
6
6
  - http://*.blip.tv/*/*
7
7
  - http://*.brainsonic.com/*
8
8
  - http://*.bubb.li/*
9
+ - http://*.buzzsprout.com/*
9
10
  - http://*.cartodb.com/*/*
10
11
  - http://*.crocodoc.com/*
11
12
  - http://*.crowdmap.com/map/*
@@ -21,6 +22,7 @@
21
22
  - http://*.deviantart.com/gallery/*
22
23
  - http://*.deviantart.net/*/*.gif
23
24
  - http://*.deviantart.net/*/*.jpg
25
+ - http://*.force.com/presentation*
24
26
  - http://*.hosted.panopto.com/*
25
27
  - http://*.iplayerhd.com/player/video/*
26
28
  - http://*.iplayerhd.com/playerframe/*
@@ -57,14 +59,6 @@
57
59
  - http://*.youtube.com/user/*
58
60
  - http://*.youtube.com/v/*
59
61
  - http://*.youtube.com/view_play_list*
60
- - http://*amazon.*/*/ASIN/*
61
- - http://*amazon.*/*/dp/*
62
- - http://*amazon.*/dp/*
63
- - http://*amazon.*/gp/aw/d/*
64
- - http://*amazon.*/gp/offer-listing/*
65
- - http://*amazon.*/gp/product/*
66
- - http://*amazon.*/gp/product/images/*
67
- - http://*amazon.*/o/ASIN/*
68
62
  - http://*boxofficebuz.com/video/*
69
63
  - http://*crackle.com/c/*
70
64
  - http://*dribbble.com/shots/*
@@ -91,8 +85,87 @@
91
85
  - http://achewood.com/*
92
86
  - http://achewood.com/index.php*
93
87
  - http://alkislarlayasiyorum.com/*
88
+ - http://allihoopa.com/s/*
94
89
  - http://alpha.vrchive.com/*
95
90
  - http://alphahat.com/view/*
91
+ - http://amazon.ca/*/ASIN/*
92
+ - http://amazon.ca/*/dp/*
93
+ - http://amazon.ca/gp/aw/d/*
94
+ - http://amazon.ca/gp/offer-listing/*
95
+ - http://amazon.ca/gp/product/*
96
+ - http://amazon.ca/o/ASIN/*
97
+ - http://amazon.cn/*/ASIN/*
98
+ - http://amazon.cn/*/dp/*
99
+ - http://amazon.cn/gp/aw/d/*
100
+ - http://amazon.cn/gp/offer-listing/*
101
+ - http://amazon.cn/gp/product/*
102
+ - http://amazon.cn/o/ASIN/*
103
+ - http://amazon.co.jp/*/ASIN/*
104
+ - http://amazon.co.jp/*/dp/*
105
+ - http://amazon.co.jp/gp/aw/d/*
106
+ - http://amazon.co.jp/gp/offer-listing/*
107
+ - http://amazon.co.jp/gp/product/*
108
+ - http://amazon.co.jp/o/ASIN/*
109
+ - http://amazon.co.uk/*/ASIN/*
110
+ - http://amazon.co.uk/*/dp/*
111
+ - http://amazon.co.uk/gp/aw/d/*
112
+ - http://amazon.co.uk/gp/offer-listing/*
113
+ - http://amazon.co.uk/gp/product/*
114
+ - http://amazon.co.uk/o/ASIN/*
115
+ - http://amazon.com.au/*/ASIN/*
116
+ - http://amazon.com.au/*/dp/*
117
+ - http://amazon.com.au/gp/aw/d/*
118
+ - http://amazon.com.au/gp/offer-listing/*
119
+ - http://amazon.com.au/gp/product/*
120
+ - http://amazon.com.au/o/ASIN/*
121
+ - http://amazon.com.br/*/ASIN/*
122
+ - http://amazon.com.br/*/dp/*
123
+ - http://amazon.com.br/gp/aw/d/*
124
+ - http://amazon.com.br/gp/offer-listing/*
125
+ - http://amazon.com.br/gp/product/*
126
+ - http://amazon.com.br/o/ASIN/*
127
+ - http://amazon.com.mx/*/ASIN/*
128
+ - http://amazon.com.mx/*/dp/*
129
+ - http://amazon.com.mx/gp/aw/d/*
130
+ - http://amazon.com.mx/gp/offer-listing/*
131
+ - http://amazon.com.mx/gp/product/*
132
+ - http://amazon.com.mx/o/ASIN/*
133
+ - http://amazon.com/*/ASIN/*
134
+ - http://amazon.com/*/dp/*
135
+ - http://amazon.com/gp/aw/d/*
136
+ - http://amazon.com/gp/offer-listing/*
137
+ - http://amazon.com/gp/product/*
138
+ - http://amazon.com/o/ASIN/*
139
+ - http://amazon.de/*/ASIN/*
140
+ - http://amazon.de/*/dp/*
141
+ - http://amazon.de/gp/aw/d/*
142
+ - http://amazon.de/gp/offer-listing/*
143
+ - http://amazon.de/gp/product/*
144
+ - http://amazon.de/o/ASIN/*
145
+ - http://amazon.es/*/ASIN/*
146
+ - http://amazon.es/*/dp/*
147
+ - http://amazon.es/gp/aw/d/*
148
+ - http://amazon.es/gp/offer-listing/*
149
+ - http://amazon.es/gp/product/*
150
+ - http://amazon.es/o/ASIN/*
151
+ - http://amazon.fr/*/ASIN/*
152
+ - http://amazon.fr/*/dp/*
153
+ - http://amazon.fr/gp/aw/d/*
154
+ - http://amazon.fr/gp/offer-listing/*
155
+ - http://amazon.fr/gp/product/*
156
+ - http://amazon.fr/o/ASIN/*
157
+ - http://amazon.in/*/ASIN/*
158
+ - http://amazon.in/*/dp/*
159
+ - http://amazon.in/gp/aw/d/*
160
+ - http://amazon.in/gp/offer-listing/*
161
+ - http://amazon.in/gp/product/*
162
+ - http://amazon.in/o/ASIN/*
163
+ - http://amazon.it/*/ASIN/*
164
+ - http://amazon.it/*/dp/*
165
+ - http://amazon.it/gp/aw/d/*
166
+ - http://amazon.it/gp/offer-listing/*
167
+ - http://amazon.it/gp/product/*
168
+ - http://amazon.it/o/ASIN/*
96
169
  - http://amzn.com/*
97
170
  - http://anchor.fm/*
98
171
  - http://aniboom.com/animation-video/*
@@ -125,6 +198,7 @@
125
198
  - http://bop.fm/s/*/*
126
199
  - http://boston.com/*video*
127
200
  - http://boston.com/video*
201
+ - http://braid.io/embed-tile/*
128
202
  - http://brainshark.com/*/*
129
203
  - http://brainsonic.com/*
130
204
  - http://bravotv.com/*/*/videos/*
@@ -132,9 +206,12 @@
132
206
  - http://bubb.li/*
133
207
  - http://bumpers.fm/e/*
134
208
  - http://bunkrapp.com/*/*
209
+ - http://buzzsprout.com/*
135
210
  - http://calameo.com/*
136
211
  - http://canalplus.fr/*
137
212
  - http://cbsnews.com/video/watch/*
213
+ - http://cdn.knightlab.com/libs/juxtapose/*
214
+ - http://cdn.knightlab.com/libs/timeline3/*
138
215
  - http://chirb.it/*
139
216
  - http://cl.ly/*
140
217
  - http://cl.ly/*/content
@@ -155,6 +232,7 @@
155
232
  - http://confreaks.com/videos/*
156
233
  - http://confreaks.net/videos/*
157
234
  - http://content.newsbound.com/*/*
235
+ - http://content.streamonecloud.net/embed/*
158
236
  - http://coub.com/embed/*
159
237
  - http://coub.com/view/*
160
238
  - http://crocodoc.com/*
@@ -208,6 +286,7 @@
208
286
  - http://google.*/maps/*
209
287
  - http://google.com/profiles/*
210
288
  - http://gph.is/*
289
+ - http://graphiq.com/w/*
211
290
  - http://grindtv.com/*/video/*
212
291
  - http://grooveshark.com/*
213
292
  - http://gty.im/*
@@ -261,6 +340,8 @@
261
340
  - http://lynda.com/*
262
341
  - http://m.youtube.com/index*
263
342
  - http://m.youtube.com/watch*
343
+ - http://magisto.com/*
344
+ - http://maphubs.com/user/*/map/*
264
345
  - http://maps.google.com/?*
265
346
  - http://maps.google.com/maps/ms?*
266
347
  - http://maps.google.com/maps?*
@@ -268,6 +349,7 @@
268
349
  - http://meadd.com/*/*
269
350
  - http://media.photobucket.com/image/*
270
351
  - http://mediamatters.org/mmtv/*
352
+ - http://medibang.com/sv/*
271
353
  - http://meetu.ps/*
272
354
  - http://megavisor.com/en/view/*
273
355
  - http://megavisor.com/view/*
@@ -287,6 +369,7 @@
287
369
  - http://my.opera.com/*/albums/show.dml?id=*
288
370
  - http://my.opera.com/*/albums/showpic.dml?album=*&picture=*
289
371
  - http://my.storygami.com/video/*
372
+ - http://my.webboards.fr/*
290
373
  - http://myloc.me/*
291
374
  - http://mynet.com/video/*
292
375
  - http://nbcnews.com/*
@@ -339,11 +422,13 @@
339
422
  - http://radioreddit.com/?q=songs*
340
423
  - http://radioreddit.com/songs*
341
424
  - http://rapidengage.com/s/*
425
+ - http://redivis.com/r/*
342
426
  - http://redux.com/f/*/*
343
427
  - http://redux.com/stream/item/*/*
344
428
  - http://relayto.com/*
345
429
  - http://reuters.com/video/*
346
430
  - http://rocketium.com/*
431
+ - http://rogertalk.com/*
347
432
  - http://s*.photobucket.com/albums/*
348
433
  - http://say.ly/*
349
434
  - http://science.discovery.com/videos/*
@@ -358,10 +443,12 @@
358
443
  - http://sendables.jibjab.com/originals/*
359
444
  - http://sendables.jibjab.com/view/*
360
445
  - http://sendvid.com/*
446
+ - http://services.momindum.com/embedly/*
361
447
  - http://shoplocket.com/products/*
362
448
  - http://shorti.com/*
363
449
  - http://showme.com/sh/*
364
450
  - http://siteanalytics.compete.com/*
451
+ - http://skip.st/one/*
365
452
  - http://skitch.com/*/*/*
366
453
  - http://sliderocket.com/*
367
454
  - http://slidesha.re/*
@@ -381,16 +468,19 @@
381
468
  - http://spoti.fi/*
382
469
  - http://spreecast.com/events/*
383
470
  - http://sproutvideo.com/videos/*
471
+ - http://stackshare.io/*
384
472
  - http://stepic.org/*
385
473
  - http://storify.com/*/*
386
474
  - http://streamable.com/*
387
475
  - http://streamio.com/api/v1/*
388
476
  - http://streetfire.net/video/*.htm*
389
477
  - http://tagmotion.com/tree/*
478
+ - http://talkshow.im/show/*
390
479
  - http://telly.com/*
391
480
  - http://thecolbertreport.cc.com/videos/*
392
481
  - http://thedailyshow.cc.com/videos/*
393
482
  - http://theguardian.com/*/video/*/*/*/*
483
+ - http://thelastgraph.com/lg.php?a=*
394
484
  - http://theonion.com/video/*
395
485
  - http://ticker.tv/v/*
396
486
  - http://tinypic.com/player.php*
@@ -411,6 +501,7 @@
411
501
  - http://twitpic.com/*
412
502
  - http://twitpic.com/photos/*
413
503
  - http://twitrpix.com/*
504
+ - http://uploads.knightlab.com/storymapjs/*/index.html
414
505
  - http://ustre.am/*
415
506
  - http://v.embedly.com/*
416
507
  - http://v.youku.com/v_playlist/*
@@ -439,7 +530,9 @@
439
530
  - http://vimeo.com/groups/*/videos/*
440
531
  - http://vimeo.com/m/#/*
441
532
  - http://vine.co/v/*
533
+ - http://vizamp.com/player/*
442
534
  - http://vol.at/video/*
535
+ - http://vrchive.com/*
443
536
  - http://vube.com/*/*
444
537
  - http://vzaar.com/videos/*
445
538
  - http://vzaar.me/*
@@ -463,6 +556,84 @@
463
556
  - http://www.alkislarlayasiyorum.com/*
464
557
  - http://www.allego.com/*
465
558
  - http://www.alphahat.com/view/*
559
+ - http://www.amazon.ca/*/ASIN/*
560
+ - http://www.amazon.ca/*/dp/*
561
+ - http://www.amazon.ca/gp/aw/d/*
562
+ - http://www.amazon.ca/gp/offer-listing/*
563
+ - http://www.amazon.ca/gp/product/*
564
+ - http://www.amazon.ca/o/ASIN/*
565
+ - http://www.amazon.cn/*/ASIN/*
566
+ - http://www.amazon.cn/*/dp/*
567
+ - http://www.amazon.cn/gp/aw/d/*
568
+ - http://www.amazon.cn/gp/offer-listing/*
569
+ - http://www.amazon.cn/gp/product/*
570
+ - http://www.amazon.cn/o/ASIN/*
571
+ - http://www.amazon.co.jp/*/ASIN/*
572
+ - http://www.amazon.co.jp/*/dp/*
573
+ - http://www.amazon.co.jp/gp/aw/d/*
574
+ - http://www.amazon.co.jp/gp/offer-listing/*
575
+ - http://www.amazon.co.jp/gp/product/*
576
+ - http://www.amazon.co.jp/o/ASIN/*
577
+ - http://www.amazon.co.uk/*/ASIN/*
578
+ - http://www.amazon.co.uk/*/dp/*
579
+ - http://www.amazon.co.uk/gp/aw/d/*
580
+ - http://www.amazon.co.uk/gp/offer-listing/*
581
+ - http://www.amazon.co.uk/gp/product/*
582
+ - http://www.amazon.co.uk/o/ASIN/*
583
+ - http://www.amazon.com.au/*/ASIN/*
584
+ - http://www.amazon.com.au/*/dp/*
585
+ - http://www.amazon.com.au/gp/aw/d/*
586
+ - http://www.amazon.com.au/gp/offer-listing/*
587
+ - http://www.amazon.com.au/gp/product/*
588
+ - http://www.amazon.com.au/o/ASIN/*
589
+ - http://www.amazon.com.br/*/ASIN/*
590
+ - http://www.amazon.com.br/*/dp/*
591
+ - http://www.amazon.com.br/gp/aw/d/*
592
+ - http://www.amazon.com.br/gp/offer-listing/*
593
+ - http://www.amazon.com.br/gp/product/*
594
+ - http://www.amazon.com.br/o/ASIN/*
595
+ - http://www.amazon.com.mx/*/ASIN/*
596
+ - http://www.amazon.com.mx/*/dp/*
597
+ - http://www.amazon.com.mx/gp/aw/d/*
598
+ - http://www.amazon.com.mx/gp/offer-listing/*
599
+ - http://www.amazon.com.mx/gp/product/*
600
+ - http://www.amazon.com.mx/o/ASIN/*
601
+ - http://www.amazon.com/*/ASIN/*
602
+ - http://www.amazon.com/*/dp/*
603
+ - http://www.amazon.com/gp/aw/d/*
604
+ - http://www.amazon.com/gp/offer-listing/*
605
+ - http://www.amazon.com/gp/product/*
606
+ - http://www.amazon.com/o/ASIN/*
607
+ - http://www.amazon.de/*/ASIN/*
608
+ - http://www.amazon.de/*/dp/*
609
+ - http://www.amazon.de/gp/aw/d/*
610
+ - http://www.amazon.de/gp/offer-listing/*
611
+ - http://www.amazon.de/gp/product/*
612
+ - http://www.amazon.de/o/ASIN/*
613
+ - http://www.amazon.es/*/ASIN/*
614
+ - http://www.amazon.es/*/dp/*
615
+ - http://www.amazon.es/gp/aw/d/*
616
+ - http://www.amazon.es/gp/offer-listing/*
617
+ - http://www.amazon.es/gp/product/*
618
+ - http://www.amazon.es/o/ASIN/*
619
+ - http://www.amazon.fr/*/ASIN/*
620
+ - http://www.amazon.fr/*/dp/*
621
+ - http://www.amazon.fr/gp/aw/d/*
622
+ - http://www.amazon.fr/gp/offer-listing/*
623
+ - http://www.amazon.fr/gp/product/*
624
+ - http://www.amazon.fr/o/ASIN/*
625
+ - http://www.amazon.in/*/ASIN/*
626
+ - http://www.amazon.in/*/dp/*
627
+ - http://www.amazon.in/gp/aw/d/*
628
+ - http://www.amazon.in/gp/offer-listing/*
629
+ - http://www.amazon.in/gp/product/*
630
+ - http://www.amazon.in/o/ASIN/*
631
+ - http://www.amazon.it/*/ASIN/*
632
+ - http://www.amazon.it/*/dp/*
633
+ - http://www.amazon.it/gp/aw/d/*
634
+ - http://www.amazon.it/gp/offer-listing/*
635
+ - http://www.amazon.it/gp/product/*
636
+ - http://www.amazon.it/o/ASIN/*
466
637
  - http://www.amzn.com/*
467
638
  - http://www.aniboom.com/animation-video/*
468
639
  - http://www.askmen.com/video/*
@@ -472,6 +643,7 @@
472
643
  - http://www.behance.net/gallery/*
473
644
  - http://www.boston.com/*video*
474
645
  - http://www.boston.com/video*
646
+ - http://www.braid.io/embed-tile/*
475
647
  - http://www.brainshark.com/*/*
476
648
  - http://www.branchtrack.com/projects/*
477
649
  - http://www.bravotv.com/*/*/videos/*
@@ -533,6 +705,7 @@
533
705
  - http://www.gogoyoko.com/song/*
534
706
  - http://www.google.*/maps/*
535
707
  - http://www.google.com/profiles/*
708
+ - http://www.graphiq.com/w/*
536
709
  - http://www.grindtv.com/*/video/*
537
710
  - http://www.guardian.co.uk/*/video/*/*/*/*
538
711
  - http://www.hark.com/clips/*
@@ -565,6 +738,9 @@
565
738
  - http://www.logotv.com/video/*
566
739
  - http://www.lonelyplanet.com/Clip.aspx?*
567
740
  - http://www.lynda.com/*
741
+ - http://www.magisto.com/*
742
+ - http://www.maphubs.com/user/*/map/*
743
+ - http://www.medibang.com/sv/*
568
744
  - http://www.meinvz.net/*
569
745
  - http://www.meinvz.net/Gadgets/Info/*
570
746
  - http://www.meinvz.net/Gadgets/Install/*
@@ -614,10 +790,12 @@
614
790
  - http://www.radioreddit.com/songs*
615
791
  - http://www.rdio.com/#/artist/*/album/*
616
792
  - http://www.rdio.com/artist/*/album/*
793
+ - http://www.redivis.com/r/*
617
794
  - http://www.redux.com/f/*/*
618
795
  - http://www.redux.com/stream/item/*/*
619
796
  - http://www.relayto.com/*
620
797
  - http://www.reuters.com/video/*
798
+ - http://www.rogertalk.com/*
621
799
  - http://www.rts.ch/play/tv/*
622
800
  - http://www.saynow.com/playMsg.html*
623
801
  - http://www.saynow.com/playMsg.html*
@@ -653,6 +831,7 @@
653
831
  - http://www.spike.com/video/*
654
832
  - http://www.spreecast.com/events/*
655
833
  - http://www.srf.ch/play/*/*/*/*?id=*
834
+ - http://www.stackshare.io/*
656
835
  - http://www.streamio.com/api/v1/*
657
836
  - http://www.streetfire.net/video/*.htm*
658
837
  - http://www.studivz.net/*
@@ -662,6 +841,7 @@
662
841
  - http://www.studivz.net/Profile/*
663
842
  - http://www.studivz.net/l/*
664
843
  - http://www.tagmotion.com/tree/*
844
+ - http://www.talkshow.im/show/*
665
845
  - http://www.ted.com/index.php/talks/*.html*
666
846
  - http://www.ted.com/index.php/talks/lang/*/*.html*
667
847
  - http://www.ted.com/talks/
@@ -672,6 +852,7 @@
672
852
  - http://www.thedailyshow.com/full-episodes/*
673
853
  - http://www.thedailyshow.com/watch/*
674
854
  - http://www.theguardian.com/*/video/*/*/*/*
855
+ - http://www.thelastgraph.com/lg.php?a=*
675
856
  - http://www.theonion.com/video/*
676
857
  - http://www.timetoast.com/timelines/*
677
858
  - http://www.tinypic.com/player.php*
@@ -702,6 +883,7 @@
702
883
  - http://www.vimeo.com/*
703
884
  - http://www.vimeo.com/groups/*/videos/*
704
885
  - http://www.vine.co/v/*
886
+ - http://www.vizamp.com/player/*
705
887
  - http://www.vol.at/video/*
706
888
  - http://www.vtility.net/virtualtour/*
707
889
  - http://www.vube.com/*/*
@@ -749,8 +931,10 @@
749
931
  - https://*.23video.com/*
750
932
  - https://*.accredible.com/*
751
933
  - https://*.brainsonic.com/*
934
+ - https://*.buzzsprout.com/*
752
935
  - https://*.cartodb.com/*/*
753
936
  - https://*.crocodoc.com/*
937
+ - https://*.force.com/presentation*
754
938
  - https://*.hosted.panopto.com/*
755
939
  - https://*.iplayerhd.com/player/video/*
756
940
  - https://*.iplayerhd.com/playerframe/*
@@ -769,6 +953,7 @@
769
953
  - https://23video.com/*
770
954
  - https://accredible.com/*
771
955
  - https://airtable.com/shr*
956
+ - https://allihoopa.com/s/*
772
957
  - https://alpha.vrchive.com/*
773
958
  - https://anchor.fm/*
774
959
  - https://animoto.com/play/*
@@ -782,11 +967,15 @@
782
967
  - https://bop.fm/a/*
783
968
  - https://bop.fm/p/*
784
969
  - https://bop.fm/s/*/*
970
+ - https://braid.io/embed-tile/*
785
971
  - https://brainshark.com/*/*
786
972
  - https://brainsonic.com/*
787
973
  - https://bumpers.fm/e/*
788
974
  - https://bunkrapp.com/*/*
975
+ - https://buzzsprout.com/*
789
976
  - https://calameo.com/*
977
+ - https://cdn.knightlab.com/libs/juxtapose/*
978
+ - https://cdn.knightlab.com/libs/timeline3/*
790
979
  - https://chirb.it/*
791
980
  - https://clipmine.com/embed/*
792
981
  - https://clipmine.com/video/*
@@ -797,6 +986,7 @@
797
986
  - https://codepicnic.com/bites/*
798
987
  - https://codepicnic.com/consoles/*
799
988
  - https://content.newsbound.com/*/*
989
+ - https://content.streamonecloud.net/embed/*
800
990
  - https://coub.com/embed/*
801
991
  - https://coub.com/view/*
802
992
  - https://crocodoc.com/*
@@ -814,20 +1004,25 @@
814
1004
  - https://gist.github.com/*
815
1005
  - https://glitter.club/*
816
1006
  - https://google.*/maps/*
1007
+ - https://graphiq.com/w/*
817
1008
  - https://hackpad.com/*
818
1009
  - https://ifttt.com/recipes/*
819
1010
  - https://iloopit.net/*/*
820
1011
  - https://img.skitch.com/*
821
1012
  - https://invis.io/*
1013
+ - https://issuu.com/*/docs/*
822
1014
  - https://it.youtube.com/*
823
1015
  - https://itunes.apple.com/*
824
1016
  - https://khanacademy.org/*
825
1017
  - https://lynda.com/*
826
1018
  - https://lynda.com/*
1019
+ - https://magisto.com/*
1020
+ - https://maphubs.com/user/*/map/*
827
1021
  - https://maps.google.com/?*
828
1022
  - https://maps.google.com/maps/ms?*
829
1023
  - https://maps.google.com/maps?*
830
1024
  - https://marvelapp.com/*
1025
+ - https://medibang.com/sv/*
831
1026
  - https://medium.com/*
832
1027
  - https://medium.com/*/*
833
1028
  - https://megavisor.com/en/view/*
@@ -838,10 +1033,13 @@
838
1033
  - https://mix.office.com/watch/*
839
1034
  - https://mixbit.com/v/*
840
1035
  - https://my.storygami.com/video/*
1036
+ - https://my.webboards.fr/*
841
1037
  - https://newhive.com/*/*
842
1038
  - https://newhive.com/*/*
843
1039
  - https://open.spotify.com/*
844
1040
  - https://oumy.com/v/*
1041
+ - https://platform.vixyvideo.com/*
1042
+ - https://platform.vixyvideo.com/*
845
1043
  - https://play.spotify.com/*
846
1044
  - https://player.videopath.com/*
847
1045
  - https://player.vimeo.com/*
@@ -857,15 +1055,19 @@
857
1055
  - https://qwip.it/watch/*
858
1056
  - https://rapidengage.com/s/*
859
1057
  - https://readtapestry.com/s/*/
1058
+ - https://redivis.com/r/*
860
1059
  - https://reelhouse.org/*
861
1060
  - https://relayto.com/*
862
1061
  - https://rocketium.com/*
1062
+ - https://rogertalk.com/*
863
1063
  - https://screen.yahoo.com/*/*
864
1064
  - https://scribblemaps.com/maps/view/*/*
865
1065
  - https://sendvid.com/*
1066
+ - https://services.momindum.com/embedly/*
866
1067
  - https://sfx.io/*
867
1068
  - https://sketchfab.com/models/*
868
1069
  - https://sketchfab.com/show/*
1070
+ - https://skip.st/one/*
869
1071
  - https://skitch.com/*/*/*
870
1072
  - https://slidr.io/*/*
871
1073
  - https://soundcloud.com/*
@@ -878,6 +1080,7 @@
878
1080
  - https://streamable.com/*
879
1081
  - https://streamio.com/api/v1/*
880
1082
  - https://sway.com/*
1083
+ - https://talkshow.im/show/*
881
1084
  - https://tr.instela.com/*
882
1085
  - https://tun.in/*
883
1086
  - https://tunein.com/*
@@ -892,10 +1095,13 @@
892
1095
  - https://view.stacker.cc/*
893
1096
  - https://vimeo.com/*
894
1097
  - https://vine.co/v/*
1098
+ - https://vizamp.com/player/*
1099
+ - https://vrchive.com/*
895
1100
  - https://w.graphiq.com/w/*
896
1101
  - https://wi.st/*
897
1102
  - https://wistia.com/*
898
1103
  - https://www.allego.com/*
1104
+ - https://www.braid.io/embed-tile/*
899
1105
  - https://www.brainshark.com/*/*
900
1106
  - https://www.branchtrack.com/projects/*
901
1107
  - https://www.calameo.com/*
@@ -916,19 +1122,27 @@
916
1122
  - https://www.globalgiving.org/microprojects/*
917
1123
  - https://www.globalgiving.org/projects/*
918
1124
  - https://www.google.*/maps/*
1125
+ - https://www.graphiq.com/w/*
919
1126
  - https://www.instagram.com/p/*
920
1127
  - https://www.khanacademy.org/*
1128
+ - https://www.magisto.com/*
1129
+ - https://www.maphubs.com/user/*/map/*
1130
+ - https://www.medibang.com/sv/*
921
1131
  - https://www.newhive.com/*/*
922
1132
  - https://www.oumy.com/v/*
923
1133
  - https://www.publons.com/author/*
924
1134
  - https://www.quora.com/*/answer/*
1135
+ - https://www.redivis.com/r/*
925
1136
  - https://www.reelhouse.org/*
926
1137
  - https://www.relayto.com/*
1138
+ - https://www.rogertalk.com/*
927
1139
  - https://www.scribblemaps.com/maps/view/*/*
928
1140
  - https://www.streamio.com/api/v1/*
1141
+ - https://www.talkshow.im/show/*
929
1142
  - https://www.vibby.com/watch*
930
1143
  - https://www.vimeo.com/*
931
1144
  - https://www.vine.co/v/*
1145
+ - https://www.vizamp.com/player/*
932
1146
  - https://www.wedgies.com/question/*
933
1147
  - https://www.youtube.com/attribution_link*
934
1148
  - https://www.youtube.com/embed/*