ruby-oembed 0.10.0 → 0.13.1

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
- SHA1:
3
- metadata.gz: 157ea3df0d0f3d89bc48f062c3db9825d1a2b381
4
- data.tar.gz: 83c9d7ed8298497fa8d58451977e0605475abd51
2
+ SHA256:
3
+ metadata.gz: aa5b49cbc24d498437a79986c23aa129502844807e5569038cc4a7e06877cfd0
4
+ data.tar.gz: 8e159677b5573eb78ee741ec327c6163cccacd87ed6c69407e588d19d0cf9673
5
5
  SHA512:
6
- metadata.gz: 3da1c0b22069ff15ae39153c2fc7efc3a249e26564ab86577f2ecd58707312187f777882b125e7e6d98cbb9568314545cfaff833f4e6f1decabdd117cc9001dc
7
- data.tar.gz: 578994a5dea31536fdd73a09a6cbc1a37f1b47e49a0dfaaf769a8406ec4eb4e7e81414dbe0e50e68cdd9f9f626fd62d113dc7e02f5cd39589e4f0e21fae3b24d
6
+ metadata.gz: b08a12d66076295e5a46182112bf3c62ca3ec7da449e0e2fbe65ef531232b3e5eef45ce46fa79ad6963b04cfe93bca0971f930cbc1076e899b591dd9584e3a7f
7
+ data.tar.gz: a51468e9dc43fa6f0e027259cabbb121eb231c5d70f76046642945755f392527a71a6e4c045d6a5e3a761d7b09089ddaa94e3655adb0b533c4ce7c7ca1d88079
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore CHANGED
@@ -1,10 +1,19 @@
1
+ # Build and local dev artifacts
1
2
  /pkg
2
3
  /.bundle
3
4
  /rails_oembed
4
- /doc
5
5
  Gemfile.lock
6
+ /doc
6
7
  .yardoc
8
+ coverage
9
+ .rspec-status
10
+
11
+ # MacOS Things
7
12
  .DS_Store
13
+
14
+ # Version management files
15
+ # (We want each developer to be able to use the version of their choosing)
8
16
  /.rvm
17
+ /.tool-versions
9
18
  /.ruby-version
10
- /.ruby-gemset
19
+ /.ruby-gemset
@@ -1,12 +1,9 @@
1
1
  language: ruby
2
2
  sudo: false
3
3
  before_install:
4
- - gem install bundler --version="~> 1.10"
4
+ - gem install bundler
5
5
  bundler_args: --without guard
6
6
  cache: bundler
7
7
  rvm:
8
- - 1.9.3
9
- - 2.0.0
10
- - 2.1.8
11
- - 2.2.4
12
- - 2.3.0
8
+ - 2.4.1
9
+ - 2.6.5
@@ -1,5 +1,40 @@
1
1
  = CHANGELOG
2
2
 
3
+ == Unreleased (0.13.2)
4
+
5
+ == 0.13.1 - 25 May 2020
6
+
7
+ * Update built-in Instagram provider to support Instgram TV URLs; Pull #72 (github.com/Alexey1100)
8
+
9
+ == 0.13.0 - 3 April 2020
10
+
11
+ * *BREAKING* Remove support for very old versions of Rubygems (older than 1.2.0 which was released in 2008)
12
+ * *DEPRECATION* Remove CI testing for EOLed Ruby versions; now only testing on Ruby 2.4.1 and newer
13
+ * Updated the list of {Embedly}[https://embed.ly/] and {Noembed}[https://noembed.com/] URL schemes.
14
+
15
+ A *huge* thank you to {Ian Ker-Seymer}[https://github.com/ianks] for his recent PR that implemented _all_ of the above improvements!
16
+
17
+ == 0.12.0 - 26 March 2017
18
+
19
+ * Add a Noembed aggregator; Issue #32 (github.com/evaryont and Arnaud Leymet)
20
+ * Updated the list of {Embedly}[http://embed.ly] URL schemes.
21
+ * Remove the `rake oembed:update_oohembed` task.
22
+
23
+ == 0.11.0 - 26 March 2017
24
+
25
+ * Add built-in Speaker Deck provider; Issue #67 (Camille Roux)
26
+ * Add built-in Giphy provider
27
+ * Add built-in Kickstarter provider
28
+ * Add built-in TED provider
29
+ * Add built-in CodePen provider
30
+ * Update built-in Hulu provider to support https
31
+
32
+ == 0.10.1 - 21 May 2016
33
+
34
+ * Update built-in Twitter provider to use the new Twitter oEmbed endpoint; Pull #60 (Ben Ramsey)
35
+ * Update built-in SlideShare provider to accept https URLs and URLs from various subdomains; Pull #59 (Axel Wahlen)
36
+ * Updated the list of {Embedly}[http://embed.ly] URL schemes. (Marcos Wright-Kuhns)
37
+
3
38
  == 0.10.0 - 6 March 2016
4
39
 
5
40
  * Add built-in Tumblr provider; Pull #55 (unknown)
data/Gemfile CHANGED
@@ -1,17 +1,19 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- # Travis CI was running into several bundler-related bug
4
- # * https://github.com/bundler/bundler/pull/3559
5
- # * https://github.com/bundler/bundler/issues/3560
6
- # that only apply to older versions of Bundler.
7
- # I added this requirement so that future Travis CI builds
8
- # fail quickly if an old version of bundler is being used.
9
- gem 'bundler', '~>1.10'
3
+ gem 'bundler'
10
4
 
11
5
  gemspec
12
6
 
7
+ gem 'coveralls', require: false
8
+
9
+ group :test do
10
+ gem 'rake'
11
+ gem 'rspec'
12
+ gem 'vcr'#, '1.11.3'
13
+ gem 'webmock'#, '1.3.0'
14
+ end
15
+
13
16
  group :guard do
14
- gem "guard-rspec"
15
- gem "guard-bundler"
16
- gem "rb-fsevent"
17
+ gem 'guard-rspec'
18
+ gem 'guard-bundler'
17
19
  end
@@ -0,0 +1,118 @@
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/maintainability/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/2020.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
+ ## Built-in Providers
19
+
20
+ The easiest way to use this library is to make use of the built-in providers.
21
+
22
+ ```ruby
23
+ OEmbed::Providers.register_all
24
+ resource = OEmbed::Providers.get('http://www.youtube.com/watch?v=2BYXBC8WQ5k')
25
+ resource.video? #=> true
26
+ resource.thumbnail_url #=> "http://i3.ytimg.com/vi/2BYXBC8WQ5k/hqdefault.jpg"
27
+ resource.html #=> <<-HTML
28
+ <object width="425" height="344">
29
+ <param name="movie" value="http://www.youtube.com/v/2BYXBC8WQ5k?fs=1"></param>
30
+ <param name="allowFullScreen" value="true"></param>
31
+ <param name="allowscriptaccess" value="always"></param>
32
+ <embed src="http://www.youtube.com/v/2BYXBC8WQ5k?fs=1" type="application/x-shockwave-flash" width="425" height="344" allowscriptaccess="always" allowfullscreen="true"></embed>
33
+ </object>
34
+ HTML
35
+ ```
36
+
37
+ ## Custom Providers
38
+
39
+ 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).
40
+
41
+ ```ruby
42
+ my_provider = OEmbed::Provider.new("http://my.cool-service.com/api/oembed_endpoint.{format}")
43
+ my_provider << "http://*.cool-service.com/image/*"
44
+ my_provider << "http://*.cool-service.com/video/*"
45
+ ```
46
+
47
+ You can then use your new custom provider *or* you can register it along with the rest of the built-in providers.
48
+
49
+ ```ruby
50
+ resource = my_provider.get("http://a.cool-service.com/video/1") #=> OEmbed::Response
51
+ resource.provider.name #=> "My Cool Service"
52
+
53
+ OEmbed::Providers.register(my_provider)
54
+ resource = OEmbed::Providers.get("http://a.cool-service.com/video/2") #=> OEmbed::Response
55
+ ```
56
+
57
+ ## Fallback Providers
58
+
59
+ Last but not least, ruby-oembed supports [Noembed](https://noembed.com/), [Embedly](http://embed.ly), provider discovery. The first two are provider aggregators. Each supports a wide array of websites ranging from [Amazon.com](http://www.amazon.com) to [xkcd](http://www.xkcd.com). The later is part of the oEmbed specification that allows websites to advertise support for the oEmbed protocol.
60
+
61
+ ```ruby
62
+ OEmbed::Providers.register_fallback(
63
+ OEmbed::ProviderDiscovery,
64
+ OEmbed::Providers::Noembed
65
+ )
66
+ OEmbed::Providers.get('https://www.xkcd.com/802/') #=> OEmbed::Response
67
+ ```
68
+
69
+ ## Formatters
70
+
71
+ 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 (or include them in your Gemfile before ruby-oembed).
72
+
73
+ ```ruby
74
+ require 'json'
75
+ require 'xmlsimple'
76
+ require 'oembed'
77
+
78
+ OEmbed::Formatter::JSON.backend #=> OEmbed::Formatter::JSON::Backends::JSONGem
79
+ OEmbed::Formatter::XML.backend #=> OEmbed::Formatter::XML::Backends::XmlSimple
80
+ ```
81
+
82
+ The following, optional, backends are currently supported:
83
+ * The [JSON implementation for Ruby](http://flori.github.com/json/)
84
+ * Rails' ActiveSupport::JSON (confirmed to work with Rails 3.0.x and should work with Rails 2.0+)
85
+ * [XmlSimple](http://xml-simple.rubyforge.org/)
86
+
87
+ # Lend a Hand
88
+
89
+ **Note:** Work is under way on a v1.0 of ruby-oembed. If you'd like to contribute, take a look at [the rubocop branch!](https://github.com/ruby-oembed/ruby-oembed/tree/rubocop)
90
+
91
+ Code for the ruby-oembed library is [hosted on GitHub](https://github.com/ruby-oembed/ruby-oembed).
92
+
93
+ ```bash
94
+ # Get the code.
95
+ git clone git://github.com/ruby-oembed/ruby-oembed.git
96
+ cd ruby-oembed
97
+ # Install all development-related gems.
98
+ gem install bundler
99
+ bundle install
100
+ # Run the tests.
101
+ bundle exec rake
102
+ # or run the test continually
103
+ bundle exec guard
104
+ ```
105
+
106
+ If you encounter any bug, feel free to [create an Issue](https://github.com/ruby-oembed/ruby-oembed/issues).
107
+
108
+ 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/).
109
+
110
+ We do our best to [keep our tests green](http://travis-ci.org/ruby-oembed/ruby-oembed)
111
+
112
+ # Contributors
113
+
114
+ Thanks to [all who have made contributions](https://github.com/ruby-oembed/ruby-oembed/contributors) to this gem, both large and small.
115
+
116
+ # License
117
+
118
+ This code is free to use under the terms of the MIT license.
data/Rakefile CHANGED
@@ -4,4 +4,6 @@ rescue LoadError
4
4
  puts "Bundler not available. Install it with: gem install bundler"
5
5
  end
6
6
 
7
+ load 'vcr/tasks/vcr.rake'
8
+
7
9
  Dir[File.join(File.dirname(__FILE__), "lib/tasks/*.rake")].sort.each { |ext| load ext }
@@ -64,7 +64,7 @@ module OEmbed
64
64
  # will be called (in order) with the URL.
65
65
  #
66
66
  # A common example:
67
- # OEmbed::Providers.register_fallback(OEmbed::ProviderDiscovery, OEmbed::Providers::OohEmbed)
67
+ # OEmbed::Providers.register_fallback(OEmbed::ProviderDiscovery, OEmbed::Providers::Noembed)
68
68
  def register_fallback(*providers)
69
69
  @@fallback += providers
70
70
  end
@@ -143,6 +143,12 @@ module OEmbed
143
143
  Youtube << "https://*.youtu.be/*"
144
144
  add_official_provider(Youtube)
145
145
 
146
+ # Provider for codepen.io
147
+ CodePen = OEmbed::Provider.new("https://codepen.io/api/oembed")
148
+ CodePen << "http://codepen.io/*"
149
+ CodePen << "https://codepen.io/*"
150
+ add_official_provider(CodePen)
151
+
146
152
  # Provider for flickr.com
147
153
  Flickr = OEmbed::Provider.new("https://www.flickr.com/services/oembed/")
148
154
  Flickr << "http://*.flickr.com/*"
@@ -170,8 +176,9 @@ module OEmbed
170
176
  add_official_provider(Revision3)
171
177
 
172
178
  # Provider for hulu.com
173
- Hulu = OEmbed::Provider.new("http://www.hulu.com/api/oembed.{format}")
179
+ Hulu = OEmbed::Provider.new("https://www.hulu.com/api/oembed.{format}")
174
180
  Hulu << "http://www.hulu.com/watch/*"
181
+ Hulu << "https://www.hulu.com/watch/*"
175
182
  add_official_provider(Hulu)
176
183
 
177
184
  # Provider for vimeo.com
@@ -183,7 +190,7 @@ module OEmbed
183
190
 
184
191
  # Provider for twitter.com
185
192
  # https://dev.twitter.com/rest/reference/get/statuses/oembed
186
- Twitter = OEmbed::Provider.new("https://api.twitter.com/1/statuses/oembed.{format}")
193
+ Twitter = OEmbed::Provider.new("https://publish.twitter.com/oembed", :json)
187
194
  Twitter << "https://*.twitter.com/*/status/*"
188
195
  add_official_provider(Twitter)
189
196
 
@@ -203,6 +210,12 @@ module OEmbed
203
210
  Instagram << "https://instagr.am/p/*"
204
211
  Instagram << "https://instagram.com/p/*"
205
212
  Instagram << "https://www.instagram.com/p/*"
213
+ Instagram << "http://instagr.am/tv/*"
214
+ Instagram << "http://instagram.com/tv/*"
215
+ Instagram << "http://www.instagram.com/tv/*"
216
+ Instagram << "https://instagr.am/tv/*"
217
+ Instagram << "https://instagram.com/tv/*"
218
+ Instagram << "https://www.instagram.com/tv/*"
206
219
  add_official_provider(Instagram)
207
220
 
208
221
  # Providers for Facebook Posts & Videos
@@ -227,8 +240,10 @@ module OEmbed
227
240
  # Provider for slideshare.net
228
241
  # http://www.slideshare.net/developers/oembed
229
242
  Slideshare = OEmbed::Provider.new("https://www.slideshare.net/api/oembed/2")
230
- Slideshare << "http://www.slideshare.net/*/*"
231
- Slideshare << "http://www.slideshare.net/mobile/*/*"
243
+ Slideshare << 'http://*.slideshare.net/*/*'
244
+ Slideshare << 'https://*.slideshare.net/*/*'
245
+ Slideshare << 'http://*.slideshare.net/mobile/*/*'
246
+ Slideshare << 'https://*.slideshare.net/mobile/*/*'
232
247
  add_official_provider(Slideshare)
233
248
 
234
249
  # Provider for yfrog
@@ -237,12 +252,24 @@ module OEmbed
237
252
  Yfrog << "http://yfrog.com/*"
238
253
  add_official_provider(Yfrog)
239
254
 
255
+ # Provider for Giphy
256
+ Giphy = OEmbed::Provider.new("http://giphy.com/services/oembed")
257
+ Giphy << "http://giphy.com/*"
258
+ Giphy << "https://giphy.com/*"
259
+ add_official_provider(Giphy)
260
+
240
261
  # Provider for imgur.com
241
262
  Imgur = OEmbed::Provider.new("https://api.imgur.com/oembed.{format}")
242
263
  Imgur << "https://*.imgur.com/gallery/*"
243
264
  Imgur << "http://*.imgur.com/gallery/*"
244
265
  add_official_provider(Imgur)
245
266
 
267
+ # Provider for Kickstarter
268
+ Kickstarter = OEmbed::Provider.new("https://www.kickstarter.com/services/oembed")
269
+ Kickstarter << "http://www.kickstarter.com/projects/*"
270
+ Kickstarter << "https://www.kickstarter.com/projects/*"
271
+ add_official_provider(Kickstarter)
272
+
246
273
  # provider for mlg-tv
247
274
  # http://tv.majorleaguegaming.com/oembed
248
275
  MlgTv = OEmbed::Provider.new("http://tv.majorleaguegaming.com/oembed")
@@ -283,6 +310,13 @@ module OEmbed
283
310
  Scribd << "http://*.scribd.com/*"
284
311
  add_official_provider(Scribd)
285
312
 
313
+ # Provider for speakerdeck.com
314
+ # https://speakerdeck.com/faq#oembed
315
+ SpeakerDeck = OEmbed::Provider.new("https://speakerdeck.com/oembed.json")
316
+ SpeakerDeck << "http://speakerdeck.com/*/*"
317
+ SpeakerDeck << "https://speakerdeck.com/*/*"
318
+ add_official_provider(SpeakerDeck)
319
+
286
320
  # Provider for movieclips.com
287
321
  MovieClips = OEmbed::Provider.new("http://movieclips.com/services/oembed/")
288
322
  MovieClips << "http://movieclips.com/watch/*/*/"
@@ -318,6 +352,12 @@ module OEmbed
318
352
  Skitch << "https://*.skitch.com/*"
319
353
  add_official_provider(Skitch)
320
354
 
355
+ # Provider for TED
356
+ Ted = OEmbed::Provider.new("https://www.ted.com/talks/oembed.{format}")
357
+ Ted << "http://*.ted.com/talks/*"
358
+ Ted << "https://*.ted.com/talks/*"
359
+ add_official_provider(Ted)
360
+
321
361
  # Provider for tumblr.com
322
362
  Tumblr = OEmbed::Provider.new("http://www.tumblr.com/oembed/1.0/", :json)
323
363
  Tumblr << "http://*.tumblr.com/post/*"
@@ -376,6 +416,17 @@ module OEmbed
376
416
  OohEmbed << %r{http://yfrog.(com|ru|com.tr|it|fr|co.il|co.uk|com.pl|pl|eu|us)/(.*?)} # image & video hosting
377
417
  OohEmbed << "http://*.youtube.com/watch*"
378
418
 
419
+ # Provider for noembed.com, which is a provider aggregator. See
420
+ # OEmbed::Providers::Noembed.urls for a full list of supported url schemas.
421
+ # https://noembed.com/#supported-sites
422
+ Noembed = OEmbed::Provider.new("https://noembed.com/embed")
423
+ # Add all known URL regexps for Noembed.
424
+ # To update this list run `rake oembed:update_noembed`
425
+ YAML.load_file(File.join(File.dirname(__FILE__), "/providers/noembed_urls.yml")).each do |url|
426
+ Noembed << Regexp.new(url)
427
+ end
428
+ add_official_provider(Noembed, :aggregators)
429
+
379
430
  # Provider for Embedly.com, which is a provider aggregator. See
380
431
  # OEmbed::Providers::Embedly.urls for a full list of supported url schemas.
381
432
  # http://embed.ly/docs/endpoints/1/oembed
@@ -1,13 +1,17 @@
1
1
  ---
2
2
  - http://*.23video.com/*
3
+ - http://*.alpacamaps.com/*
3
4
  - http://*.bandcamp.com/
4
5
  - http://*.bandcamp.com/album/*
5
6
  - http://*.bandcamp.com/track/*
6
7
  - http://*.blip.tv/*/*
7
8
  - http://*.brainsonic.com/*
8
9
  - http://*.bubb.li/*
10
+ - http://*.buzzsprout.com/*
9
11
  - http://*.cartodb.com/*/*
10
- - http://*.crocodoc.com/*
12
+ - http://*.cdn.vooplayer.com/*
13
+ - http://*.cincopa.com/watch/*
14
+ - http://*.cloud.panopto.eu/*
11
15
  - http://*.crowdmap.com/map/*
12
16
  - http://*.crowdmap.com/post/*
13
17
  - http://*.dailymotion.com/*/video/*
@@ -21,31 +25,40 @@
21
25
  - http://*.deviantart.com/gallery/*
22
26
  - http://*.deviantart.net/*/*.gif
23
27
  - http://*.deviantart.net/*/*.jpg
28
+ - http://*.embed\.fun/*
29
+ - http://*.force.com/presentation*
24
30
  - http://*.hosted.panopto.com/*
25
31
  - http://*.iplayerhd.com/player/video/*
26
32
  - http://*.iplayerhd.com/playerframe/*
27
33
  - http://*.kaltura.com/*
28
34
  - http://*.kastio.com/webcasts/*
29
35
  - http://*.kinomap.com/*
30
- - http://*.linkedin.com/company/*
31
- - http://*.linkedin.com/in/*
32
- - http://*.linkedin.com/pub/*
36
+ - http://*.libsyn.com/*
33
37
  - http://*.looplogic.com/*
38
+ - http://*.paperform.co/*
34
39
  - http://*.polarb.com/*
40
+ - http://*.razoo.com/*
35
41
  - http://*.silk.co/explore/*
36
42
  - http://*.slideshare.net/*/*
37
43
  - http://*.smugmug.com/*
38
44
  - http://*.smugmug.com/*#*
39
- - http://*.status.net/notice/*
45
+ - http://*.sparemin.com/myrecording
46
+ - http://*.sparemin.com/recording-*
47
+ - http://*.staging.panopto.com/*
48
+ - http://*.tiktok.com/*
40
49
  - http://*.tinypic.com/*.jpg
41
50
  - http://*.tinypic.com/*.png
42
51
  - http://*.tochka.net/*
43
52
  - http://*.tumblr.com/post/*
53
+ - http://*.twentythree.net/*
54
+ - http://*.twitch.tv/*
44
55
  - http://*.twitrpix.com/*
56
+ - http://*.typeform.com/*
45
57
  - http://*.univision.com/*/video/*
46
58
  - http://*.uservoice.com/*/suggestions/*
47
59
  - http://*.vidcaster.com/*
48
- - http://*.vzaar.me/*
60
+ - http://*.videomarketingplatform.co/*
61
+ - http://*.walkinto.in/*/*
49
62
  - http://*.web.tv/*
50
63
  - http://*.wi.st/*
51
64
  - http://*.wikipedia.org/wiki/*
@@ -57,14 +70,6 @@
57
70
  - http://*.youtube.com/user/*
58
71
  - http://*.youtube.com/v/*
59
72
  - 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
73
  - http://*boxofficebuz.com/video/*
69
74
  - http://*crackle.com/c/*
70
75
  - http://*dribbble.com/shots/*
@@ -72,121 +77,227 @@
72
77
  - http://*meetup.com/*
73
78
  - http://*nfb.ca/film/*
74
79
  - http://*revision3.com/*
75
- - http://*twitch.tv/*
76
- - http://*twitch.tv/*/b/*
77
80
  - http://*viddler.com/v/*
78
81
  - http://*vidyard.com/*
79
- - http://*yfrog.*/*
80
82
  - http://*youtube.com/watch*
83
+ - http://23degrees.io/*
81
84
  - http://23hq.com/*/photo/*
82
85
  - http://23video.com/*
83
86
  - http://360.io/*
87
+ - http://360stories.com/*
88
+ - http://3d.cappasity.com/u/*
89
+ - http://3dcrafts.co.kr/*
90
+ - http://3dcrafts.net/*
84
91
  - http://4cook.net/recipe/*
85
92
  - http://4sq.com/*
86
93
  - http://59saniye.com/*
94
+ - http://60db.co/story/*
95
+ - http://a.fsbl.io/*
87
96
  - http://abcnews.com/*/video/*
88
- - http://abcnews.com/video/playerIndex*
89
- - http://abcnews.go.com/*/video/*
90
- - http://abcnews.go.com/video/playerIndex*
97
+ - http://acebot.ai/*
98
+ - http://acehiphop.com/*
91
99
  - http://achewood.com/*
92
100
  - http://achewood.com/index.php*
101
+ - http://adorilabs.com/*
102
+ - http://adpaths.com/*
93
103
  - http://alkislarlayasiyorum.com/*
104
+ - http://allears.cc/*
105
+ - http://allihoopa.com/s/*
94
106
  - http://alpha.vrchive.com/*
95
107
  - http://alphahat.com/view/*
96
- - http://amzn.com/*
97
108
  - http://anchor.fm/*
98
109
  - http://aniboom.com/animation-video/*
99
110
  - http://animal.discovery.com/videos/*
100
111
  - http://animoto.com/play/*
101
112
  - http://answers.polldaddy.com/poll/*
113
+ - http://apester.com/*
114
+ - http://api.bangbang.do/*
102
115
  - http://api.lovelive.tv/v1/*
103
116
  - http://api.minoto-video.com/publishers/*/videos/*
104
- - http://api.shopstyle.com/action/apiVisitRetailer*
117
+ - http://app.badpanda.gg/*
118
+ - http://app.queezly.com/*
105
119
  - http://app.sliderocket.com/*
106
120
  - http://app.stghv.com/*
107
121
  - http://app.ustudio.com/embed/*/*
108
122
  - http://app.videocheckout.com/embed/*
109
123
  - http://app.wistia.com/embed/medias/*
124
+ - http://app.wizer.me/learn/*
125
+ - http://app.wizer.me/preview/*
126
+ - http://appfollow.io/*
110
127
  - http://arcg.is/*
128
+ - http://archivos.digital/*
129
+ - http://are.na/*
130
+ - http://article.voxsnap.com/*
111
131
  - http://askmen.com/video/*
112
132
  - http://asofterworld.com/*.jpg
133
+ - http://athenascope.com/*
113
134
  - http://audioboom.com/boos/*
135
+ - http://audioboom.com/posts/*
136
+ - http://audiomack.com/*
137
+ - http://audm.com/*
138
+ - http://ausha.co/*
139
+ - http://autodesk.com/*
140
+ - http://avocode.com/*
141
+ - http://backtracks.fm/*
142
+ - http://badgr.io/*
114
143
  - http://bale.io/*
115
144
  - http://bambuser.com/channel/*
116
145
  - http://bambuser.com/channel/*/broadcast/*
117
146
  - http://bambuser.com/v/*
147
+ - http://bangbang.do/*
118
148
  - http://bcove.me/*
149
+ - http://bcove.video/*
150
+ - http://beautiful.ai/*
119
151
  - http://behance.net/gallery/*
120
152
  - http://beta-sliderocket.com/*
153
+ - http://beta.mapinmind.net/*
121
154
  - http://beta.polstir.com/*/*
155
+ - http://bingewith.com/*
156
+ - http://bitofme.io/*
122
157
  - http://blab.im/*
123
158
  - http://blip.tv/*/*
159
+ - http://blogcast.host/*
160
+ - http://blogsend.io/*
161
+ - http://blueprintue.com/*
124
162
  - http://boo.fm/b*
163
+ - http://bootkik.com/*
125
164
  - http://bop.fm/s/*/*
126
165
  - http://boston.com/*video*
127
166
  - http://boston.com/video*
167
+ - http://braid.io/embed-tile/*
128
168
  - http://brainshark.com/*/*
129
169
  - http://brainsonic.com/*
130
170
  - http://bravotv.com/*/*/videos/*
131
- - http://break.com/*/*
132
171
  - http://bubb.li/*
172
+ - http://buk.io/*
133
173
  - http://bumpers.fm/e/*
174
+ - http://buncee.com/*
134
175
  - http://bunkrapp.com/*/*
176
+ - http://buttondown.email/*
177
+ - http://buyte.co/embed*
178
+ - http://buzzsprout.com/*
179
+ - http://cadence13.com/*
135
180
  - http://calameo.com/*
181
+ - http://calconic.com/*
182
+ - http://campaign.theheartstringsproject.com/*
136
183
  - http://canalplus.fr/*
184
+ - http://captur3d.io/*
185
+ - http://carbon.now.sh/*
186
+ - http://cards.heeyy.com/*
187
+ - http://cayke.co/*
137
188
  - http://cbsnews.com/video/watch/*
189
+ - http://cdn.knightlab.com/libs/juxtapose/*
190
+ - http://cdn.knightlab.com/libs/timeline3/*
191
+ - http://cdn.sendout.io/*
192
+ - http://charts.socialexplorer.com/*
193
+ - http://chatnews.io/embeds/*
194
+ - http://checkmedia.org/*/project/*
195
+ - http://chew.tv/*/*
138
196
  - http://chirb.it/*
139
- - http://cl.ly/*
140
- - http://cl.ly/*/content
197
+ - http://cincopa.com/~*
198
+ - http://cinema8.com/*
199
+ - http://cinnamon.video/*
200
+ - http://clay.run/*
141
201
  - http://clippituser.tv/*
142
202
  - http://clipter.com/c/*
143
203
  - http://clyp.it/*
204
+ - http://cms.megaphone.fm/*
144
205
  - http://cnb.cx/*
145
206
  - http://cnbc.com/id/*/play/1/video/*
146
207
  - http://cnbc.com/id/*?*video*
147
208
  - http://cnn.it/*
209
+ - http://codeembed.dev/*
210
+ - http://codegenerators.io/*
211
+ - http://codeocean.com/*
148
212
  - http://codepen.io/*/pen/*
149
213
  - http://codepen.io/*/pen/*
150
214
  - http://codepicnic.com/bites/*
151
215
  - http://codepicnic.com/consoles/*
152
216
  - http://codeply.com/view/*
217
+ - http://codeprism.co/*
218
+ - http://codesandbox.io/*
219
+ - http://codesandbox.io/*
220
+ - http://codiva.io/p/*
221
+ - http://cohe.se/*
222
+ - http://collect.chat/*
153
223
  - http://collegehumor.com/video/*
154
224
  - http://collegehumor.com/video:*
225
+ - http://commaful.com/*
155
226
  - http://confreaks.com/videos/*
156
227
  - http://confreaks.net/videos/*
157
228
  - http://content.newsbound.com/*/*
229
+ - http://content.streamonecloud.net/embed/*
230
+ - http://cooler.tv/*
158
231
  - http://coub.com/embed/*
159
232
  - http://coub.com/view/*
160
- - http://crocodoc.com/*
161
233
  - http://crowdmap.com/map/*
162
234
  - http://crowdmap.com/post/*
235
+ - http://cube365.net/*
163
236
  - http://d.pr/i/*
237
+ - http://danfoss.com/*
164
238
  - http://dashboard.minoto-video.com/main/video/details/*
239
+ - http://datapane.com/*
240
+ - http://datasmoothie.com/*/*
241
+ - http://datastudio.google.com/*
242
+ - http://datavis.tech/*
243
+ - http://datawrapper.dwcdn.net/*
244
+ - http://dcaclab.com/*
245
+ - http://decs.xyz/*
246
+ - http://diagramy.com/*
165
247
  - http://distrify.com/film/*
248
+ - http://dlystr.io/*
166
249
  - http://dnbradio.com/*
167
- - http://docs.com/*
250
+ - http://docdroid.net/*
251
+ - http://doculet.net/*
168
252
  - http://dotsub.com/view/*
169
253
  - http://drbl.in/*
170
254
  - http://dreambroker.com/channel/*
171
255
  - http://dsc.discovery.com/videos/*
256
+ - http://dtsgr.com/*
172
257
  - http://edition.cnn.com/video/*
173
258
  - http://edition.cnn.com/videos/*
259
+ - http://edocr.com/*
260
+ - http://elementari.io/*
261
+ - http://ellie-app.com/*/*
262
+ - http://embed.actionbutton.co/embedly*
263
+ - http://embed.eberus.com/*
174
264
  - http://embed.imajize.com/*
265
+ - http://embed.kumu.io
266
+ - http://embed.kumu.io
267
+ - http://embed.medleytext.net/*
175
268
  - http://embed.minoto-video.com/*
176
- - http://espn.go.com/*/story*
177
- - http://espn.go.com/video/clip*
178
- - http://etsy.com/*
269
+ - http://embed.sigsev.io/*
270
+ - http://embed.socialexplorer.com/*
271
+ - http://embed.socialexplorer.com/*
272
+ - http://embedery.com/*
273
+ - http://emojicom.io/*
274
+ - http://emojot.com/*
275
+ - http://envelope.li/*
276
+ - http://epluribus.io/*
277
+ - http://esplor.io/*
278
+ - http://ethfiddle.com/*
279
+ - http://exploratory.io/viz/*
280
+ - http://eyrie.io/*
281
+ - http://facer.io/*
282
+ - http://factsumo.com/*
179
283
  - http://fav.me/*
180
284
  - http://fb.com
181
285
  - http://fb.me/*
286
+ - http://firstory.me/*
182
287
  - http://fiverr.com/*/*
183
288
  - http://flat.io/score/*
289
+ - http://flexvid.io/*
184
290
  - http://flic.kr/*
291
+ - http://flipnot.es/*
292
+ - http://flixel.com/*
293
+ - http://flourish.studio/*
185
294
  - http://flowvella.com/s/*
295
+ - http://fontself.com/*
296
+ - http://footpathapp.com/*
186
297
  - http://fora.tv/*/*/*/*
187
- - http://formspring.me/*
188
- - http://formspring.me/*/q/*
189
- - http://fotokritik.com/*/*
298
+ - http://forge.gg/*
299
+ - http://form.jotform.com/*
300
+ - http://formula-embedappspot.com/*
190
301
  - http://fotopedia.com/*/*
191
302
  - http://foursquare.com/*
192
303
  - http://fr.peoplbrain.com/tutoriaux/*
@@ -196,207 +307,388 @@
196
307
  - http://frontback.me/p/*
197
308
  - http://funnyordie.com/m/*
198
309
  - http://funnyordie.com/videos/*
310
+ - http://futurism.com/images/*
311
+ - http://fwdeveryone.com/t/*
199
312
  - http://galeri.uludagsozluk.com/*
313
+ - http://gametakes.com/*
200
314
  - http://gametrailers.com/video*
315
+ - http://genesisplayer.io/*
316
+ - http://genius.com/videos/*
317
+ - http://getclippy.co/p/*
318
+ - http://getcloudapp.com/*
319
+ - http://getfader.com/*
320
+ - http://getshuffle.app/*
321
+ - http://getsportsme.com/*
201
322
  - http://gfycat.com/*
323
+ - http://gif-vif.com/*
202
324
  - http://giflike.com/a/*
325
+ - http://gifyourgame.com/*
203
326
  - http://giphy.com/gifs/*
204
327
  - http://gist.github.com/*
328
+ - http://gitpitch.com/*/*
329
+ - http://glitch.com/*
330
+ - http://go.vooozer.com/*
331
+ - http://goabstract.com/*
205
332
  - http://goanimate.com/videos/*
206
333
  - http://godtube.com/featured/video/*
207
334
  - http://godtube.com/watch/*
335
+ - http://goodworld.me/*
208
336
  - http://google.*/maps/*
209
337
  - http://google.com/profiles/*
338
+ - http://goplayalong.com/*
339
+ - http://gosynth.com/*
210
340
  - http://gph.is/*
341
+ - http://grain.co/*
342
+ - http://graphcommons.com/graphs/*
343
+ - http://graphcommons.com/nodes/*
344
+ - http://graphiq.com/w/*
345
+ - http://greetor.com/*
346
+ - http://gridble.io/*
211
347
  - http://grindtv.com/*/video/*
212
348
  - http://grooveshark.com/*
213
- - http://gty.im/*
214
349
  - http://guardian.co.uk/*/video/*/*/*/*
350
+ - http://guilded.gg/*
351
+ - http://hapyak.com/embed/*
352
+ - http://hardbound.co/*/*/*
353
+ - http://hatchxr.com/*
215
354
  - http://health.discovery.com/videos/*
355
+ - http://herth.co/*
356
+ - http://heytwist.com/*
357
+ - http://hopbucket.com/plan-details/*
216
358
  - http://huffduffer.com/*/*
217
359
  - http://hulu.com/w/*
218
360
  - http://hulu.com/watch*
219
361
  - http://hulu.tv/*
220
362
  - http://hypem.com/premiere/*
221
- - http://i*.photobucket.com/albums/*
222
363
  - http://i.giflike.com/*
223
- - http://identi.ca/notice/*
224
364
  - http://ifood.tv/channel/user/*
225
365
  - http://ifood.tv/recipe/*
226
366
  - http://ifood.tv/video/*
227
367
  - http://iframe.minoto-video.com/*
228
368
  - http://ifttt.com/recipes/*
229
369
  - http://ign.com/videos/*
370
+ - http://iheart.com/*
230
371
  - http://img.ly/*
231
- - http://img.skitch.com/*
232
372
  - http://imgs.xkcd.com/*
373
+ - http://indshine.com/*
374
+ - http://infogr.am/*
375
+ - http://infogram.com/*
233
376
  - http://infomous.com/node/*
377
+ - http://injurymap.com/*
234
378
  - http://instagr.am/p/*
235
379
  - http://instagram.com/p/*
380
+ - http://instaread.co/*
381
+ - http://intellogo.com/*
236
382
  - http://investigation.discovery.com/videos/*
237
383
  - http://isnare.com/*
238
384
  - http://issuu.com/*/docs/*
239
385
  - http://it.youtube.com/*
240
- - http://itunes.apple.com/*
386
+ - http://itemsy.com/*
387
+ - http://itslit.com/*
241
388
  - http://izlesene.com/video/*
242
389
  - http://jdsupra.com/legalnews/*
243
390
  - http://jibjab.com/view/*
391
+ - http://jovian.ml/*
244
392
  - http://jsbin.com/*
245
393
  - http://jsbin.com/*/*
394
+ - http://jscomplete.com/*
246
395
  - http://jsfiddle.net/*
396
+ - http://jsitor.com/*
247
397
  - http://kastio.com/webcasts/*
248
398
  - http://khanacademy.org/*
399
+ - http://kidoju.com/*
400
+ - http://kit.com/*
401
+ - http://kralify.com/watch*
402
+ - http://kyso.io/*
403
+ - http://launch.newsinc.com/*
404
+ - http://lcontacts.herokuapp.com/embed/button/*
405
+ - http://lean-data-science.com/*
406
+ - http://like.co/*
249
407
  - http://link.brightcove.com/services/player/bcpid*
250
- - http://linkedin.com/company/*
251
- - http://linkedin.com/in/*
252
- - http://linkedin.com/in/*
253
- - http://linkedin.com/pub/*
254
408
  - http://list.ly/list/*
409
+ - http://listennotes.com/*
410
+ - http://listle.io/*
255
411
  - http://live.huffingtonpost.com/r/segment/*/*
256
412
  - http://liveleak.com/view?*
257
- - http://lockerz.com/s/*
413
+ - http://livestream.com/*
258
414
  - http://logotv.com/video/*
259
415
  - http://lonelyplanet.com/Clip.aspx?*
416
+ - http://ludus.one/*
260
417
  - http://lustich.de/videos/*
261
418
  - http://lynda.com/*
262
419
  - http://m.youtube.com/index*
263
420
  - http://m.youtube.com/watch*
421
+ - http://magisto.com/*
422
+ - http://makecode.com/*
423
+ - http://makecode.com/*
424
+ - http://maphubs.com/user/*/map/*
264
425
  - http://maps.google.com/?*
265
426
  - http://maps.google.com/maps/ms?*
266
427
  - http://maps.google.com/maps?*
267
428
  - http://meadd.com/*
268
429
  - http://meadd.com/*/*
269
- - http://media.photobucket.com/image/*
430
+ - http://medal.tv/*
431
+ - http://media.giphy.com/media/*
270
432
  - http://mediamatters.org/mmtv/*
433
+ - http://medibang.com/sv/*
434
+ - http://meedle.io/*
271
435
  - http://meetu.ps/*
436
+ - http://megaphone.fm/*
272
437
  - http://megavisor.com/en/view/*
273
438
  - http://megavisor.com/view/*
274
439
  - http://military.discovery.com/videos/*
440
+ - http://millioneyez.com/*
275
441
  - http://minilogs.com/*
442
+ - http://minko.io/s/
276
443
  - http://mixergy.com/*
277
444
  - http://mlkshk.com/p/*
278
445
  - http://moby.to/*
446
+ - http://momento360.com/e/u/*
447
+ - http://momento360.com/e/uc/*
279
448
  - http://money.cnn.com/video/*
280
449
  - http://money.cnn.com/videos/*
450
+ - http://moveshelf.com/*
451
+ - http://mpembed.com/*
281
452
  - http://mpora.com/videos/*
282
453
  - http://msn.foxsports.com/video*
283
454
  - http://msnbc.msn.com/*/watch/*
284
455
  - http://multimedia.foxsports.com/m/video/*/*
456
+ - http://muralapp.io/*
285
457
  - http://muvi.es/*
286
458
  - http://muzu.tv/*
287
459
  - http://my.opera.com/*/albums/show.dml?id=*
288
460
  - http://my.opera.com/*/albums/showpic.dml?album=*&picture=*
461
+ - http://my.panomoments.com/*
289
462
  - http://my.storygami.com/video/*
290
- - http://myloc.me/*
463
+ - http://my.webboards.fr/*
464
+ - http://mybeweeg.com/w/*
465
+ - http://mymixtapez.com/*
291
466
  - http://mynet.com/video/*
467
+ - http://myvideoplace.tv/*
468
+ - http://namchey.com/*
469
+ - http://naturalatlas.com/*
292
470
  - http://nbcnews.com/*
293
- - http://new.livestream.com/*
294
- - http://nyti.ms/*
471
+ - http://neatclip.com/*
472
+ - http://nodalview.com/*
473
+ - http://npmcharts.com/*
474
+ - http://nr8.com/embed/*
475
+ - http://nuggetcharts.com/*
295
476
  - http://nzonscreen.com/title/*
477
+ - http://oddshot.tv/*
478
+ - http://odiocast.com/*
479
+ - http://oice.com/*
480
+ - http://okluffa.com/*
481
+ - http://omniscope.me/*
482
+ - http://omny.fm/*
296
483
  - http://on.aol.com/playlist/*
297
484
  - http://on.aol.com/video/*
298
485
  - http://on.bubb.li/*
299
486
  - http://open.spotify.com/*
487
+ - http://openings.moe/*
488
+ - http://openprocessing.org/*
489
+ - http://orbitvu.com/001/*
300
490
  - http://oumy.com/v/*
491
+ - http://overflow.io/*
301
492
  - http://ow.ly/i/*
493
+ - http://parkfy.com/*
494
+ - http://pasteapp.com/*
302
495
  - http://pastebin.com/*
303
496
  - http://pastie.org/*
497
+ - http://patching.io/*
304
498
  - http://photozou.jp/photo/photo_only/*/*
305
499
  - http://photozou.jp/photo/show/*/*
306
- - http://pics.lockerz.com/s/*
307
500
  - http://pikchur.com/*
501
+ - http://pinecast.co/*
502
+ - http://pippa.io/*
503
+ - http://pixdor.com/*
308
504
  - http://pixorial.com/watch/*
309
505
  - http://planetgreen.discovery.com/videos/*
506
+ - http://play.buto.tv/*
507
+ - http://play.kotlinlang.org/embed#*http://pl.kotl.in/*
310
508
  - http://play.minoto-video.com/*
509
+ - http://play.radiopublic.com/*
510
+ - http://play.soundsgood.co/*
311
511
  - http://play.spotify.com/*
512
+ - http://player.entrypoint.live/*
513
+ - http://player.megaphone.fm/*
312
514
  - http://player.videopath.com/*
313
515
  - http://player.vimeo.com/*
314
- - http://plays.tv/video/*
516
+ - http://players.brightcove.net/*
517
+ - http://playpost.app/*
518
+ - http://plays.tv/*/*
519
+ - http://plnkr.co/*
520
+ - http://plnkr.co/*
521
+ - http://plotly.com/*
315
522
  - http://plus.google.com/*
316
523
  - http://polarb.com/*
524
+ - http://polarishare.com/*
525
+ - http://polaroidswing.com/p/*
317
526
  - http://polldaddy.com/community/poll/*
318
527
  - http://polldaddy.com/poll/*
319
- - http://pollplug.com/poll/*
528
+ - http://pollforall.com/*
529
+ - http://pollsify.com/*
530
+ - http://pollstar.com/*
320
531
  - http://polstir.com/*/*
321
532
  - http://ponga.com/*
533
+ - http://popchest.com/*/
534
+ - http://portal.paratii.video/*
322
535
  - http://portal.sliderocket.com/*
536
+ - http://posixion.com/*
537
+ - http://pressekompass.net/*
323
538
  - http://prezi.com/*/*
539
+ - http://procfu.com/*
540
+ - http://producthunt.com/*
324
541
  - http://public.chartblocks.com/c/*
325
542
  - http://public.talely.com/*/*
543
+ - http://publicinput.com/*
544
+ - http://publish.viostream.com/play/*
545
+ - http://publit.io/*
326
546
  - http://publons.com/author/*
547
+ - http://pulse.qa/*
548
+ - http://qanda.co/q/*
327
549
  - http://qik.com/*
328
550
  - http://qik.com/video/*
329
551
  - http://qik.ly/*
552
+ - http://quantum-circuit.com/*
330
553
  - http://questionablecontent.net/
331
554
  - http://questionablecontent.net/comics/*.png
332
555
  - http://questionablecontent.net/view.php*
556
+ - http://qumucloud.com/*
333
557
  - http://quora.com/*/answer/*
334
558
  - http://radd.it/comments/*
335
559
  - http://radd.it/magic/*
336
560
  - http://radd.it/playlists/*
337
561
  - http://radd.it/r/*
338
562
  - http://radd.it/user/*
563
+ - http://radiopublic.com/*
339
564
  - http://radioreddit.com/?q=songs*
340
565
  - http://radioreddit.com/songs*
341
566
  - http://rapidengage.com/s/*
567
+ - http://rave.dj/*
568
+ - http://reading.fm/*
569
+ - http://redivis.com/r/*
342
570
  - http://redux.com/f/*/*
343
571
  - http://redux.com/stream/item/*/*
572
+ - http://registry.bitmark.com/*
573
+ - http://rekt.gg/*
344
574
  - http://relayto.com/*
575
+ - http://relive.cc/view/*
576
+ - http://repl.it/*
577
+ - http://repl.it/*
578
+ - http://replay.infinity.fm/*
579
+ - http://represent.com/*
345
580
  - http://reuters.com/video/*
346
581
  - http://rocketium.com/*
347
- - http://s*.photobucket.com/albums/*
582
+ - http://rogertalk.com/*
583
+ - http://roshiclips.com/watch*
584
+ - http://rumble.com/*
585
+ - http://runelm.io/*/*
586
+ - http://runkit.com/*
348
587
  - http://say.ly/*
588
+ - http://scalafiddle.io/*
589
+ - http://scapic.com/*
349
590
  - http://science.discovery.com/videos/*
350
591
  - http://sciencestage.com/a/*.html
351
592
  - http://sciencestage.com/v/*.html
593
+ - http://scorebat.com/*
352
594
  - http://screencast.com/*/media/*
353
595
  - http://screencast.com/t/*
596
+ - http://screenhunters.com/*
354
597
  - http://screenr.com/*
355
598
  - http://scribblemaps.com/maps/view/*/*
356
599
  - http://scribd.com/doc/*
357
600
  - http://scribd.com/mobile/documents/*
601
+ - http://scrimba.com/*
602
+ - http://searchie.io/*
603
+ - http://secure.plays.tv/*/*
604
+ - http://seekbeak.com/v/*
358
605
  - http://sendables.jibjab.com/originals/*
359
606
  - http://sendables.jibjab.com/view/*
360
607
  - http://sendvid.com/*
608
+ - http://serenader.io/*
609
+ - http://services.momindum.com/embedly/*
610
+ - http://sheetsu.com/tables/*
361
611
  - http://shoplocket.com/products/*
362
612
  - http://shorti.com/*
363
613
  - http://showme.com/sh/*
364
- - http://siteanalytics.compete.com/*
365
- - http://skitch.com/*/*/*
614
+ - http://sidewire.com/*/*/*
615
+ - http://simmer.io/*/*
616
+ - http://skip.st/one/*
366
617
  - http://sliderocket.com/*
367
618
  - http://slidesha.re/*
619
+ - http://slidetosubscribe.com/*
368
620
  - http://slidr.io/*/*
369
- - http://snappytv.com/*
621
+ - http://snack.expo.io/*
622
+ - http://snappd\.tv/*
370
623
  - http://snd.sc/*
624
+ - http://snipaclip.com/*
625
+ - http://snipit.io/*
371
626
  - http://snotr.com/video/*
372
627
  - http://socialcam.com/v/*
628
+ - http://socialexplorer.com/*
373
629
  - http://some.ly/*
374
630
  - http://someecards.com/*/*
631
+ - http://song.link/*
375
632
  - http://soundcloud.com/*
376
633
  - http://soundcloud.com/*/*
377
634
  - http://soundcloud.com/*/sets/*
378
635
  - http://soundcloud.com/groups/*
636
+ - http://spaces.archilogic.com/model/*
379
637
  - http://speakerdeck.com/*/*
638
+ - http://speakytext.com/*
639
+ - http://sphereplay.com/*
380
640
  - http://spiegel.de/video/*
641
+ - http://spkt.io/*
381
642
  - http://spoti.fi/*
643
+ - http://spott.tv/*
644
+ - http://spreaker.com/*
382
645
  - http://spreecast.com/events/*
383
646
  - http://sproutvideo.com/videos/*
647
+ - http://stackblitz.com/*
648
+ - http://stackshare.io/*
649
+ - http://stagevids.com/watch*
650
+ - http://stanza.co/*
384
651
  - http://stepic.org/*
385
- - http://storify.com/*/*
652
+ - http://stonly.com/*
653
+ - http://store.pixdor.com/*
654
+ - http://storeo.io/*
655
+ - http://stories.nws.ai/*
656
+ - http://storribook.com/articles/view/*/*
657
+ - http://storyforj.com/*
658
+ - http://storygami.com/v/*
659
+ - http://storymaps.arcgis.com/stories/*
386
660
  - http://streamable.com/*
387
661
  - http://streamio.com/api/v1/*
662
+ - http://streamr.network/*
388
663
  - http://streetfire.net/video/*.htm*
664
+ - http://sudomemo.net/*
665
+ - http://superstack.io/v/*
666
+ - http://supgif.com/*
667
+ - http://svrf.com/*
668
+ - http://swiftsnip.com/*
669
+ - http://swymrelay.com/*
389
670
  - http://tagmotion.com/tree/*
390
- - http://telly.com/*
671
+ - http://talkshow.im/show/*
672
+ - http://tambur.co/*
673
+ - http://tapewrite.com/*
674
+ - http://tech.io/snippet/*
675
+ - http://tenor.co/*
676
+ - http://tenor.com/*
677
+ - http://terminaid.com/*
678
+ - http://texblocks.com/*
391
679
  - http://thecolbertreport.cc.com/videos/*
392
680
  - http://thedailyshow.cc.com/videos/*
393
681
  - http://theguardian.com/*/video/*/*/*/*
682
+ - http://thelastgraph.com/lg.php?a=*
394
683
  - http://theonion.com/video/*
684
+ - http://thesportsme.com/*
685
+ - http://thinglink.com/*
686
+ - http://threesixty.tours/*
395
687
  - http://ticker.tv/v/*
688
+ - http://tiktok.com/*
396
689
  - http://tinypic.com/player.php*
397
690
  - http://tinypic.com/r/*/*
398
691
  - http://tinypic.com/view.php*
399
- - http://tl.gd/*
400
692
  - http://tlc.discovery.com/videos/*
401
693
  - http://tochka.net/*
402
694
  - http://today.msnbc.msn.com/id/*/ns/*
@@ -406,16 +698,23 @@
406
698
  - http://tumblr.com/*
407
699
  - http://tun.in/*
408
700
  - http://tunein.com/*
409
- - http://twitgoo.com/*
410
- - http://twitlonger.com/show/*
411
- - http://twitpic.com/*
412
- - http://twitpic.com/photos/*
701
+ - http://twitch.tv/*
413
702
  - http://twitrpix.com/*
703
+ - http://typecast.ai/*
704
+ - http://uilicious.com/*
705
+ - http://uploads.knightlab.com/storymapjs/*/index.html
706
+ - http://upscri.be/*
707
+ - http://usehappen.com/*
708
+ - http://useloom.com/share/*
414
709
  - http://ustre.am/*
415
710
  - http://v.embedly.com/*
416
711
  - http://v.youku.com/v_playlist/*
417
712
  - http://v.youku.com/v_show/*
713
+ - http://vectary.com/*
714
+ - http://vectorlogo.zone/*
418
715
  - http://veoh.com/watch/*
716
+ - http://verasity.io/player*
717
+ - http://verse.com/stories/*
419
718
  - http://vibi.com/videocard/*
420
719
  - http://vice.com/*
421
720
  - http://vid.me/*
@@ -425,7 +724,6 @@
425
724
  - http://video.foxbusiness.com/v/*
426
725
  - http://video.foxnews.com/v/*
427
726
  - http://video.google.com/videoplay?*
428
- - http://video.nytimes.com/video/*
429
727
  - http://video.pbs.org/video/*
430
728
  - http://video.uludagsozluk.com/*
431
729
  - http://video214.com/play/*
@@ -433,29 +731,52 @@
433
731
  - http://videodetective.com/*/*
434
732
  - http://videodonor.com/video/*
435
733
  - http://videos.nymag.com/*
734
+ - http://vidgrid.com/*
436
735
  - http://vids.myspace.com/index.cfm?fuseaction=vids.individual&videoid*
736
+ - http://view.genial.ly/*
437
737
  - http://view.stacker.cc/*
738
+ - http://viewer.archilogic.com/*
739
+ - http://vilynx.com/video/*
438
740
  - http://vimeo.com/*
439
741
  - http://vimeo.com/groups/*/videos/*
440
742
  - http://vimeo.com/m/#/*
743
+ - http://vimsical.com/vims/*
441
744
  - http://vine.co/v/*
745
+ - http://vizamp.com/player/*
746
+ - http://vizor.io/*/*
747
+ - http://vizydrop.com/*
748
+ - http://vlipsy.com/*
749
+ - http://vlurb.co/*
750
+ - http://voicepods.com/*
442
751
  - http://vol.at/video/*
752
+ - http://vr3d.vn/*
753
+ - http://vrbfoto.com/f/*
754
+ - http://vrchive.com/*
443
755
  - http://vube.com/*/*
444
- - http://vzaar.com/videos/*
445
- - http://vzaar.me/*
446
- - http://vzaar.tv/*
756
+ - http://vysda.com/*
447
757
  - http://w.graphiq.com/w/*
448
- - http://washingtonpost.com/wp-dyn/*/video/*/*/*/*
758
+ - http://walkinto.in/*/*
449
759
  - http://weavly.com/watch/*
450
760
  - http://web.tv/*
761
+ - http://webassembly.studio/*
762
+ - http://websitevoice.com/*
451
763
  - http://wedgi.es/*
452
- - http://wh.gov/photos-and-video/video/*
453
- - http://wh.gov/video/*
764
+ - http://wedonthavetime.org/*
765
+ - http://weekendsuperheroes.com/*
766
+ - http://whooshkaa.com/*
454
767
  - http://wi.st/*
768
+ - http://widgetic.com/*
769
+ - http://widgets.feedbeaver.com/*
455
770
  - http://wirewax.com/*
456
771
  - http://wistia.com/*
772
+ - http://with.in/watch/*
773
+ - http://withkoji.com/*
774
+ - http://wonderbooth.com.my/*
457
775
  - http://wordpress.tv/*/*/*/*/
458
776
  - http://worldstarhiphop.com/videos/video*.php?v=*
777
+ - http://worthyt.io/*
778
+ - http://wribbn.com/*
779
+ - http://writeinstone.com/*
459
780
  - http://www.23hq.com/*/photo/*
460
781
  - http://www.59saniye.com/*
461
782
  - http://www.achewood.com/*
@@ -463,7 +784,7 @@
463
784
  - http://www.alkislarlayasiyorum.com/*
464
785
  - http://www.allego.com/*
465
786
  - http://www.alphahat.com/view/*
466
- - http://www.amzn.com/*
787
+ - http://www.altizure.com/project/*
467
788
  - http://www.aniboom.com/animation-video/*
468
789
  - http://www.askmen.com/video/*
469
790
  - http://www.asofterworld.com/*.jpg
@@ -472,13 +793,14 @@
472
793
  - http://www.behance.net/gallery/*
473
794
  - http://www.boston.com/*video*
474
795
  - http://www.boston.com/video*
796
+ - http://www.braid.io/embed-tile/*
475
797
  - http://www.brainshark.com/*/*
476
798
  - http://www.branchtrack.com/projects/*
477
799
  - http://www.bravotv.com/*/*/videos/*
478
- - http://www.break.com/*/*
479
800
  - http://www.calameo.com/*
480
801
  - http://www.canalplus.fr/*
481
802
  - http://www.candybank.com/*
803
+ - http://www.changelog.com/*
482
804
  - http://www.clikthrough.com/theater/video/*
483
805
  - http://www.clipfish.de/*/*/video/*
484
806
  - http://www.clippituser.tv/*
@@ -489,18 +811,18 @@
489
811
  - http://www.cnn.com/videos/*
490
812
  - http://www.cnn.com/videos/*
491
813
  - http://www.codeply.com/view/*
814
+ - http://www.codiva.io/p/*
492
815
  - http://www.colbertnation.com/full-episodes/*
493
816
  - http://www.colbertnation.com/the-colbert-report-collections/*
494
817
  - http://www.colbertnation.com/the-colbert-report-videos/*
495
818
  - http://www.collegehumor.com/video/*
496
819
  - http://www.collegehumor.com/video:*
497
- - http://www.comedycentral.com/videos/index.jhtml?*
498
820
  - http://www.confreaks.com/videos/*
499
821
  - http://www.confreaks.net/videos/*
500
822
  - http://www.dailymile.com/people/*/entries/*
823
+ - http://www.datasmoothie.com/*/*
501
824
  - http://www.dnbradio.com/*
502
825
  - http://www.dreambroker.com/channel/*
503
- - http://www.etsy.com/*
504
826
  - http://www.eyeem.com/a/*
505
827
  - http://www.eyeem.com/p/*
506
828
  - http://www.eyeem.com/u/*
@@ -509,19 +831,20 @@
509
831
  - http://www.facebook.com/*/videos/*
510
832
  - http://www.facebook.com/photo.php*
511
833
  - http://www.facebook.com/video.php*
834
+ - http://www.figma.com/file/*
835
+ - http://www.figma.com/proto/*
512
836
  - http://www.fiverr.com/*/*
513
837
  - http://www.flickr.com/photos/*
514
- - http://www.formspring.me/*
515
- - http://www.formspring.me/*/q/*
516
- - http://www.fotokritik.com/*/*
517
838
  - http://www.fotopedia.com/*/*
518
839
  - http://www.foursquare.com/*
519
840
  - http://www.freemusicarchive.org/curator/*
520
841
  - http://www.freemusicarchive.org/music/*
842
+ - http://www.frontback.me/p/*
521
843
  - http://www.funnyordie.com/m/*
522
844
  - http://www.funnyordie.com/videos/*
845
+ - http://www.fwdeveryone.com/t/*
523
846
  - http://www.gametrailers.com/video*
524
- - http://www.gettyimages.com/detail/photo/*
847
+ - http://www.getsportsme.com/*
525
848
  - http://www.giflike.com/a/*
526
849
  - http://www.globalgiving.org/funds/*
527
850
  - http://www.globalgiving.org/microprojects/*
@@ -533,8 +856,11 @@
533
856
  - http://www.gogoyoko.com/song/*
534
857
  - http://www.google.*/maps/*
535
858
  - http://www.google.com/profiles/*
859
+ - http://www.gradba.se/v/*
860
+ - http://www.graphiq.com/w/*
536
861
  - http://www.grindtv.com/*/video/*
537
862
  - http://www.guardian.co.uk/*/video/*/*/*/*
863
+ - http://www.hapyak.com/embed/*
538
864
  - http://www.hark.com/clips/*
539
865
  - http://www.howcast.com/videos/*
540
866
  - http://www.hulu.com/embed/*
@@ -546,6 +872,8 @@
546
872
  - http://www.ifood.tv/recipe/*
547
873
  - http://www.ifood.tv/video/*
548
874
  - http://www.ign.com/videos/*
875
+ - http://www.initialview.com/player/linkedin*
876
+ - http://www.initialview.com/player/linkedin/*
549
877
  - http://www.instagram.com/p/*
550
878
  - http://www.isnare.com/*
551
879
  - http://www.izlesene.com/video/
@@ -561,16 +889,15 @@
561
889
  - http://www.last.fm/music/+images/*
562
890
  - http://www.last.fm/music/+videos/*
563
891
  - http://www.liveleak.com/view?*
564
- - http://www.livestream.com/*
565
892
  - http://www.logotv.com/video/*
566
893
  - http://www.lonelyplanet.com/Clip.aspx?*
567
894
  - http://www.lynda.com/*
568
- - http://www.meinvz.net/*
569
- - http://www.meinvz.net/Gadgets/Info/*
570
- - http://www.meinvz.net/Gadgets/Install/*
571
- - http://www.meinvz.net/Groups/Overview/*
572
- - http://www.meinvz.net/Profile/*
573
- - http://www.meinvz.net/l/*
895
+ - http://www.magisto.com/*
896
+ - http://www.maphubs.com/user/*/map/*
897
+ - http://www.maprosoft.com/app/map*
898
+ - http://www.maven.video/*
899
+ - http://www.medibang.com/sv/*
900
+ - http://www.megafono.io/*
574
901
  - http://www.metacafe.com/w/*
575
902
  - http://www.metacafe.com/watch/*
576
903
  - http://www.metacdn.com/r/c/*/*
@@ -578,6 +905,7 @@
578
905
  - http://www.minilogs.com/*
579
906
  - http://www.mixcloud.com/*/*/
580
907
  - http://www.mobypicture.com/user/*/view/*
908
+ - http://www.moviemogul.io/*
581
909
  - http://www.mpora.com/videos/*
582
910
  - http://www.msnbc.msn.com/*/watch/*
583
911
  - http://www.msnbc.msn.com/id/*/ns/*
@@ -592,42 +920,41 @@
592
920
  - http://www.npr.org/*/*/*/*/*/*
593
921
  - http://www.npr.org/*/*/*/*/*/*/*
594
922
  - http://www.npr.org/templates/story/story.php*
595
- - http://www.nytimes.com/video/*/*
596
923
  - http://www.nzonscreen.com/title/*
924
+ - http://www.oddshot.tv/*
597
925
  - http://www.oumy.com/v/*
598
926
  - http://www.overstream.net/view.php?oid=*
927
+ - http://www.pastery.net/*
599
928
  - http://www.pastie.org/*
600
929
  - http://www.pixorial.com/watch/*
601
930
  - http://www.polleverywhere.com/free_text_polls/*
602
931
  - http://www.polleverywhere.com/multiple_choice_polls/*
603
932
  - http://www.polleverywhere.com/polls/*
933
+ - http://www.popchest.com/*/
604
934
  - http://www.publons.com/author/*
605
- - http://www.quantcast.com/*
606
- - http://www.quantcast.com/wd:*
607
935
  - http://www.questionablecontent.net/
608
936
  - http://www.questionablecontent.net/comics/*.png
609
937
  - http://www.questionablecontent.net/view.php*
610
938
  - http://www.quora.com/*/answer/*
611
939
  - http://www.qwantz.com/index.php?comic=*
612
- - http://www.qwiki.com/q/*
940
+ - http://www.qzzr.com/quiz/*
941
+ - http://www.radiopublic.com/*
613
942
  - http://www.radioreddit.com/?q=songs*
614
943
  - http://www.radioreddit.com/songs*
615
944
  - http://www.rdio.com/#/artist/*/album/*
616
945
  - http://www.rdio.com/artist/*/album/*
946
+ - http://www.redivis.com/r/*
617
947
  - http://www.redux.com/f/*/*
618
948
  - http://www.redux.com/stream/item/*/*
949
+ - http://www.rekt.gg/*
619
950
  - http://www.relayto.com/*
951
+ - http://www.relive.cc/view/*
620
952
  - http://www.reuters.com/video/*
953
+ - http://www.rogertalk.com/*
621
954
  - http://www.rts.ch/play/tv/*
622
955
  - http://www.saynow.com/playMsg.html*
623
956
  - http://www.saynow.com/playMsg.html*
624
957
  - http://www.schooltube.com/video/*/*
625
- - http://www.schuelervz.net/*
626
- - http://www.schuelervz.net/Gadgets/Info/*
627
- - http://www.schuelervz.net/Gadgets/Install/*
628
- - http://www.schuelervz.net/Groups/Overview/*
629
- - http://www.schuelervz.net/Profile/*
630
- - http://www.schuelervz.net/l/*
631
958
  - http://www.sciencestage.com/a/*.html
632
959
  - http://www.sciencestage.com/v/*.html
633
960
  - http://www.scrapblog.com/viewer/viewer.aspx*
@@ -636,42 +963,38 @@
636
963
  - http://www.scribblemaps.com/maps/view/*/*
637
964
  - http://www.scribd.com/doc/*
638
965
  - http://www.scribd.com/mobile/documents/*
639
- - http://www.shopstyle.com/action/apiVisitRetailer*
640
- - http://www.shopstyle.com/action/viewLook*
641
- - http://www.shopstyle.com/browse*
642
966
  - http://www.shorti.com/*
643
967
  - http://www.showme.com/sh/*
968
+ - http://www.simplecast.com/s/*
644
969
  - http://www.sliderocket.com/*
645
970
  - http://www.slideshare.net/*/*
646
971
  - http://www.slideshare.net/mobile/*/*
647
- - http://www.snappytv.com/*
648
972
  - http://www.snotr.com/video/*
649
973
  - http://www.socialcam.com/v/*
974
+ - http://www.sociale.co/question/*
975
+ - http://www.socialexplorer.com/*
650
976
  - http://www.some.ly/*
651
977
  - http://www.someecards.com/*/*
652
978
  - http://www.spiegel.de/video/*
653
979
  - http://www.spike.com/video/*
654
980
  - http://www.spreecast.com/events/*
655
981
  - http://www.srf.ch/play/*/*/*/*?id=*
982
+ - http://www.stackshare.io/*
656
983
  - http://www.streamio.com/api/v1/*
657
984
  - http://www.streetfire.net/video/*.htm*
658
- - http://www.studivz.net/*
659
- - http://www.studivz.net/Gadgets/Info/*
660
- - http://www.studivz.net/Gadgets/Install/*
661
- - http://www.studivz.net/Groups/Overview/*
662
- - http://www.studivz.net/Profile/*
663
- - http://www.studivz.net/l/*
985
+ - http://www.sudomemo.net/*
664
986
  - http://www.tagmotion.com/tree/*
987
+ - http://www.talkshow.im/show/*
665
988
  - http://www.ted.com/index.php/talks/*.html*
666
989
  - http://www.ted.com/index.php/talks/lang/*/*.html*
667
- - http://www.ted.com/talks/
990
+ - http://www.ted.com/talks/*
668
991
  - http://www.ted.com/talks/*.html*
669
992
  - http://www.ted.com/talks/lang/*/*.html*
670
- - http://www.telly.com/*
671
993
  - http://www.thedailyshow.com/collection/*/*/*
672
994
  - http://www.thedailyshow.com/full-episodes/*
673
995
  - http://www.thedailyshow.com/watch/*
674
996
  - http://www.theguardian.com/*/video/*/*/*/*
997
+ - http://www.thelastgraph.com/lg.php?a=*
675
998
  - http://www.theonion.com/video/*
676
999
  - http://www.timetoast.com/timelines/*
677
1000
  - http://www.tinypic.com/player.php*
@@ -686,9 +1009,6 @@
686
1009
  - http://www.trailerspy.com/view_video.php*
687
1010
  - http://www.trutv.com/video/*
688
1011
  - http://www.tudou.com/programs/view/*
689
- - http://www.twitlonger.com/show/*
690
- - http://www.twitpic.com/*
691
- - http://www.twitpic.com/photos/*
692
1012
  - http://www.ustream.tv/*
693
1013
  - http://www.ustream.tv/channel/*
694
1014
  - http://www.ustream.tv/recorded/*
@@ -702,15 +1022,11 @@
702
1022
  - http://www.vimeo.com/*
703
1023
  - http://www.vimeo.com/groups/*/videos/*
704
1024
  - http://www.vine.co/v/*
1025
+ - http://www.vizamp.com/player/*
705
1026
  - http://www.vol.at/video/*
706
1027
  - http://www.vtility.net/virtualtour/*
707
1028
  - http://www.vube.com/*/*
708
- - http://www.vzaar.com/videos/*
709
- - http://www.vzaar.tv/*
710
- - http://www.washingtonpost.com/wp-dyn/*/video/*/*/*/*
711
1029
  - http://www.weavly.com/watch/*
712
- - http://www.whitehouse.gov/photos-and-video/video/*
713
- - http://www.whitehouse.gov/video/*
714
1030
  - http://www.whosay.com/*/content/*
715
1031
  - http://www.whosay.com/*/photos/*
716
1032
  - http://www.whosay.com/*/videos/*
@@ -721,6 +1037,7 @@
721
1037
  - http://www.xiami.com/song/*
722
1038
  - http://www.xkcd.com/*
723
1039
  - http://www.xtranormal.com/watch/*
1040
+ - http://www.yelp.com/*&hrid=.+
724
1041
  - http://www.youtube.com/attribution_link*
725
1042
  - http://www.youtube.com/embed/*
726
1043
  - http://www.youtube.com/gif*
@@ -731,6 +1048,7 @@
731
1048
  - http://www.zie.nl/video/*
732
1049
  - http://xiami.com/song/*
733
1050
  - http://xkcd.com/*
1051
+ - http://xtracomedy.com/*
734
1052
  - http://yahoo.com/movies/*
735
1053
  - http://youtu.be/*
736
1054
  - http://youtube.ca/*
@@ -746,193 +1064,737 @@
746
1064
  - http://youtube.pl/*
747
1065
  - http://zeit.de/video/*
748
1066
  - http://zie.nl/video/*
1067
+ - http://ziggeo.io/*
1068
+ - http://zoomable.ca/*
749
1069
  - https://*.23video.com/*
750
1070
  - https://*.accredible.com/*
1071
+ - https://*.alpacamaps.com/*
1072
+ - https://*.bandcamp.com/
1073
+ - https://*.bandcamp.com/album/*
1074
+ - https://*.bandcamp.com/track/*
751
1075
  - https://*.brainsonic.com/*
1076
+ - https://*.buzzsprout.com/*
752
1077
  - https://*.cartodb.com/*/*
753
- - https://*.crocodoc.com/*
1078
+ - https://*.cdn.vooplayer.com/*
1079
+ - https://*.cincopa.com/watch/*
1080
+ - https://*.cloud.panopto.eu/*
1081
+ - https://*.embed\.fun/*
1082
+ - https://*.force.com/presentation*
754
1083
  - https://*.hosted.panopto.com/*
755
1084
  - https://*.iplayerhd.com/player/video/*
756
1085
  - https://*.iplayerhd.com/playerframe/*
757
1086
  - https://*.kaltura.com/*
1087
+ - https://*.libsyn.com/*
758
1088
  - https://*.looplogic.com/*
1089
+ - https://*.paperform.co/*
1090
+ - https://*.razoo.com/*
759
1091
  - https://*.silk.co/explore/*
1092
+ - https://*.slideshare.net/*/*
1093
+ - https://*.sparemin.com/myrecording
1094
+ - https://*.sparemin.com/recording-*
1095
+ - https://*.staging.panopto.com/*
760
1096
  - https://*.stream.co.jp/apiservice/*
761
1097
  - https://*.stream.ne.jp/apiservice/*
1098
+ - https://*.tiktok.com/*
1099
+ - https://*.tumblr.com/post/*
1100
+ - https://*.twentythree.net/*
1101
+ - https://*.twitch.tv/*
1102
+ - https://*.typeform.com/*
1103
+ - https://*.uplabs.com/posts/*
1104
+ - https://*.videomarketingplatform.co/*
1105
+ - https://*.vids.io/videos/*
1106
+ - https://*.walkinto.in/*/*
762
1107
  - https://*.wi.st/*
1108
+ - https://*.wikipedia.org/wiki/*
763
1109
  - https://*.wistia.com/*
764
1110
  - https://*.yahoo.com/movies/*
765
1111
  - https://*.youtube.com/playlist*
766
1112
  - https://*.youtube.com/v/*
1113
+ - https://*imgur.com/*
1114
+ - https://*meetup.com/*
767
1115
  - https://*vidyard.com/*
768
1116
  - https://*youtube.com/watch*
1117
+ - https://23degrees.io/*
769
1118
  - https://23video.com/*
1119
+ - https://360stories.com/*
1120
+ - https://3d.cappasity.com/u/*
1121
+ - https://3dcrafts.co.kr/*
1122
+ - https://3dcrafts.net/*
1123
+ - https://60db.co/story/*
1124
+ - https://a.fsbl.io/*
1125
+ - https://abcnews.com/*/video/*
1126
+ - https://abcnews.com/video/playerIndex*
1127
+ - https://abcnews.com/video/playerIndex*
1128
+ - https://abcnews.go.com/*/video/*
1129
+ - https://abcnews.go.com/*/video/*
1130
+ - https://abcnews.go.com/video/playerIndex*
1131
+ - https://abcnews.go.com/video/playerIndex*
770
1132
  - https://accredible.com/*
1133
+ - https://acebot.ai/*
1134
+ - https://acehiphop.com/*
1135
+ - https://adorilabs.com/*
1136
+ - https://adpaths.com/*
771
1137
  - https://airtable.com/shr*
1138
+ - https://allears.cc/*
1139
+ - https://allihoopa.com/s/*
772
1140
  - https://alpha.vrchive.com/*
1141
+ - https://alugha.com/videos/*
773
1142
  - https://anchor.fm/*
774
1143
  - https://animoto.com/play/*
1144
+ - https://apester.com/*
1145
+ - https://api.bangbang.do/*
775
1146
  - https://api.lovelive.tv/v1/*
1147
+ - https://api.peptone.io/v1/visualize/*
1148
+ - https://app.badpanda.gg/*
776
1149
  - https://app.devhv.com/oembed/*
777
1150
  - https://app.ilosvideos.com/view/*
1151
+ - https://app.queezly.com/*
778
1152
  - https://app.stghv.com/*
1153
+ - https://app.swurveys.com/api/swurveys/*/opengraph
1154
+ - https://app.very.gd/p/*
779
1155
  - https://app.videocheckout.com/embed/*
780
1156
  - https://app.wistia.com/embed/medias/*
1157
+ - https://app.wizer.me/learn/*
1158
+ - https://app.wizer.me/preview/*
1159
+ - https://appfollow.io/*
1160
+ - https://archivos.digital/*
1161
+ - https://are.na/*
1162
+ - https://art19.com/shows/*/episodes/*
1163
+ - https://article.voxsnap.com/*
1164
+ - https://askwhale.com/q/*
1165
+ - https://athenascope.com/*
1166
+ - https://audioboom.com/posts/*
1167
+ - https://audiomack.com/*
1168
+ - https://audm.com/*
1169
+ - https://ausha.co/*
1170
+ - https://autodesk.com/*
1171
+ - https://avocode.com/*
1172
+ - https://backtracks.fm/*
1173
+ - https://badgr.io/*
1174
+ - https://bangbang.do/*
1175
+ - https://bcove.video/*
1176
+ - https://beautiful.ai/*
1177
+ - https://beta.mapinmind.net/*
1178
+ - https://bingewith.com/*
1179
+ - https://bitofme.io/*
781
1180
  - https://blab.im/*
1181
+ - https://blogcast.host/*
1182
+ - https://blogsend.io/*
1183
+ - https://blueprintue.com/*
1184
+ - https://bootkik.com/*
782
1185
  - https://bop.fm/a/*
783
1186
  - https://bop.fm/p/*
784
1187
  - https://bop.fm/s/*/*
1188
+ - https://boston.com/*video*
1189
+ - https://boston.com/video*
1190
+ - https://braid.io/embed-tile/*
785
1191
  - https://brainshark.com/*/*
786
1192
  - https://brainsonic.com/*
1193
+ - https://buk.io/*
787
1194
  - https://bumpers.fm/e/*
1195
+ - https://buncee.com/*
788
1196
  - https://bunkrapp.com/*/*
1197
+ - https://buttondown.email/*
1198
+ - https://buyte.co/embed*
1199
+ - https://buzzsprout.com/*
1200
+ - https://cadence13.com/*
789
1201
  - https://calameo.com/*
1202
+ - https://calconic.com/*
1203
+ - https://campaign.theheartstringsproject.com/*
1204
+ - https://captur3d.io/*
1205
+ - https://carbon.now.sh/*
1206
+ - https://cards.heeyy.com/*
1207
+ - https://cayke.co/*
1208
+ - https://cbsnews.com/video/watch/*
1209
+ - https://cdn.knightlab.com/libs/juxtapose/*
1210
+ - https://cdn.knightlab.com/libs/timeline3/*
1211
+ - https://cdn.sendout.io/*
1212
+ - https://charts.socialexplorer.com/*
1213
+ - https://chatnews.io/embeds/*
1214
+ - https://checkmedia.org/*/project/*
1215
+ - https://chew.tv/*/*
790
1216
  - https://chirb.it/*
791
- - https://clipmine.com/embed/*
792
- - https://clipmine.com/video/*
1217
+ - https://cincopa.com/~*
1218
+ - https://cinema8.com/*
1219
+ - https://cinnamon.video/*
1220
+ - https://cl.ly.com/*
1221
+ - https://clay.run/*
793
1222
  - https://clippituser.tv/*
794
1223
  - https://clipter.com/c/*
795
1224
  - https://cloudup.com/*
796
1225
  - https://clyp.it/*
1226
+ - https://cms.megaphone.fm/*
1227
+ - https://cnb.cx/*
1228
+ - https://cnbc.com/id/*/play/1/video/*
1229
+ - https://cnbc.com/id/*?*video*
1230
+ - https://cnn.it/*
1231
+ - https://codeembed.dev/*
1232
+ - https://codegenerators.io/*
1233
+ - https://codeocean.com/*
797
1234
  - https://codepicnic.com/bites/*
798
1235
  - https://codepicnic.com/consoles/*
1236
+ - https://codeprism.co/*
1237
+ - https://codiva.io/p/*
1238
+ - https://cohe.se/*
1239
+ - https://collect.chat/*
1240
+ - https://commaful.com/*
799
1241
  - https://content.newsbound.com/*/*
1242
+ - https://content.streamonecloud.net/embed/*
1243
+ - https://cooler.tv/*
800
1244
  - https://coub.com/embed/*
801
1245
  - https://coub.com/view/*
802
- - https://crocodoc.com/*
803
- - https://docs.com/*
1246
+ - https://cube365.net/*
1247
+ - https://danfoss.com/*
1248
+ - https://datapane.com/*
1249
+ - https://datasmoothie.com/*/*
1250
+ - https://datastudio.google.com/*
1251
+ - https://datavis.tech/*
1252
+ - https://datawrapper.dwcdn.net/*
1253
+ - https://dcaclab.com/*
1254
+ - https://decs.xyz/*
1255
+ - https://diagramy.com/*
1256
+ - https://dlystr.io/*
1257
+ - https://dnbradio.com/*
1258
+ - https://docdroid.net/*
1259
+ - https://doculet.net/*
804
1260
  - https://dreambroker.com/channel/*
805
- - https://etsy.com/*
1261
+ - https://dtsgr.com/*
1262
+ - https://edition.cnn.com/video/*
1263
+ - https://edition.cnn.com/videos/*
1264
+ - https://edocr.com/*
1265
+ - https://elementari.io/*
1266
+ - https://ellie-app.com/*/*
1267
+ - https://embed.actionbutton.co/embedly*
1268
+ - https://embed.eberus.com/*
1269
+ - https://embed.medleytext.net/*
1270
+ - https://embed.sigsev.io/*
1271
+ - https://embed.simplecast.com/*
1272
+ - https://embed.socialexplorer.com/*
1273
+ - https://embed.socialexplorer.com/*
1274
+ - https://embedery.com/*
1275
+ - https://emojicom.io/*
1276
+ - https://emojot.com/*
1277
+ - https://envelope.li/*
1278
+ - https://epluribus.io/*
1279
+ - https://esplor.io/*
1280
+ - https://ethfiddle.com/*
1281
+ - https://exif.co/*/i/*
1282
+ - https://exploratory.io/viz/*
1283
+ - https://eyrie.io/*
1284
+ - https://facer.io/*
1285
+ - https://factsumo.com/*
806
1286
  - https://fb.me/*
1287
+ - https://firstory.me/*
1288
+ - https://flexvid.io/*
1289
+ - https://flic.kr/*
1290
+ - https://flipnot.es/*
1291
+ - https://flixel.com/*
1292
+ - https://flourish.studio/*
807
1293
  - https://flowvella.com/s/*
1294
+ - https://fontself.com/*
1295
+ - https://footpathapp.com/*
1296
+ - https://forge.gg/*
1297
+ - https://form.jotform.com/*
1298
+ - https://formula-embed.appspot.com/*
808
1299
  - https://foursquare.com/*
809
1300
  - https://fr.peoplbrain.com/tutoriaux/*
1301
+ - https://fraim.com/player/*
1302
+ - https://frontback.me/p/*
1303
+ - https://futurism.com/images/*
1304
+ - https://fwdeveryone.com/t/*
1305
+ - https://gametakes.com/*
810
1306
  - https://ganxy.com/*
1307
+ - https://genesisplayer.io/*
1308
+ - https://genius.com/videos/*
1309
+ - https://getclippy.co/p/*
1310
+ - https://getcloudapp.com/*
1311
+ - https://getfader.com/*
1312
+ - https://getshuffle.app/*
1313
+ - https://getsportsme.com/*
811
1314
  - https://gfycat.com/*
1315
+ - https://gif-vif.com/*
812
1316
  - https://gifs.com/*
813
1317
  - https://gifs.com/gif/*
1318
+ - https://gifyourgame.com/*
1319
+ - https://giphy.com/gifs/*
814
1320
  - https://gist.github.com/*
1321
+ - https://gitpitch.com/*/*
1322
+ - https://glitch.com/*
815
1323
  - https://glitter.club/*
1324
+ - https://go.vooozer.com/*
1325
+ - https://goabstract.com/*
1326
+ - https://goodworld.me/*
816
1327
  - https://google.*/maps/*
817
- - https://hackpad.com/*
1328
+ - https://goplayalong.com/*
1329
+ - https://gosynth.com/*
1330
+ - https://gph.is/*
1331
+ - https://grain.co/*
1332
+ - https://graphcommons.com/graphs/*
1333
+ - https://graphcommons.com/nodes/*
1334
+ - https://graphiq.com/w/*
1335
+ - https://greetor.com/*
1336
+ - https://gridble.io/*
1337
+ - https://guardian.co.uk/*/video/*/*/*/*
1338
+ - https://guilded.gg/*
1339
+ - https://hapyak.com/embed/*
1340
+ - https://hardbound.co/*/*/*
1341
+ - https://hatchxr.com/*
1342
+ - https://herth.co/*
1343
+ - https://heytwist.com/*
1344
+ - https://hopbucket.com/plan-details/*
1345
+ - https://huzza.io/*/live-stream/*
1346
+ - https://icloud.com/keynote/*
818
1347
  - https://ifttt.com/recipes/*
1348
+ - https://iheart.com/*
819
1349
  - https://iloopit.net/*/*
820
- - https://img.skitch.com/*
821
- - https://invis.io/*
1350
+ - https://indshine.com/*
1351
+ - https://infogr.am/*
1352
+ - https://infogram.com/*
1353
+ - https://injurymap.com/*
1354
+ - https://instaread.co/*
1355
+ - https://intellogo.com/*
1356
+ - https://iorad.com/player/*
1357
+ - https://ipushpull.com/pages/domains/*/pages/*
1358
+ - https://issuu.com/*/docs/*
822
1359
  - https://it.youtube.com/*
823
- - https://itunes.apple.com/*
1360
+ - https://itemsy.com/*
1361
+ - https://itslit.com/*
1362
+ - https://jovian.ml/*
1363
+ - https://jscomplete.com/*
1364
+ - https://jsitor.com/*
824
1365
  - https://khanacademy.org/*
1366
+ - https://kidoju.com/*
1367
+ - https://kit.com
1368
+ - https://kralify.com/watch*
1369
+ - https://kyso.io/*
1370
+ - https://launch.newsinc.com/*
1371
+ - https://lcontacts.herokuapp.com/embed/button/*
1372
+ - https://lean-data-science.com/*
1373
+ - https://like.co/*
1374
+ - https://listennotes.com/*
1375
+ - https://listle.io/*
1376
+ - https://live.huffingtonpost.com/r/segment/*/*
1377
+ - https://livestream.com/*
1378
+ - https://ludus.one/*
825
1379
  - https://lynda.com/*
826
1380
  - https://lynda.com/*
1381
+ - https://magisto.com/*
1382
+ - https://makecode.com/*
1383
+ - https://makecode.com/*
1384
+ - https://maphubs.com/user/*/map/*
827
1385
  - https://maps.google.com/?*
828
1386
  - https://maps.google.com/maps/ms?*
829
1387
  - https://maps.google.com/maps?*
1388
+ - https://maps.mysidewalk.com/*
830
1389
  - https://marvelapp.com/*
831
- - https://medium.com/*
832
- - https://medium.com/*/*
1390
+ - https://medal.tv/*
1391
+ - https://media.giphy.com/media/*
1392
+ - https://medibang.com/sv/*
1393
+ - https://meedle.io/*
1394
+ - https://meetu.ps/*
1395
+ - https://megaphone.fm/*
833
1396
  - https://megavisor.com/en/view/*
834
1397
  - https://megavisor.com/view/*
1398
+ - https://millioneyez.com/*
1399
+ - https://minko.io/s/
835
1400
  - https://mix.office.com/MyMixes/Details/*
836
1401
  - https://mix.office.com/embed/*
837
1402
  - https://mix.office.com/mix/*
838
1403
  - https://mix.office.com/watch/*
839
1404
  - https://mixbit.com/v/*
1405
+ - https://momento360.com/e/u/*
1406
+ - https://momento360.com/e/uc/*
1407
+ - https://money.cnn.com/video/*
1408
+ - https://money.cnn.com/videos/*
1409
+ - https://moveshelf.com/*
1410
+ - https://mpembed.com/*
1411
+ - https://msn.foxsports.com/video*
1412
+ - https://msnbc.msn.com/*/watch/*
1413
+ - https://multimedia.foxsports.com/m/video/*/*
1414
+ - https://muralapp.io/*
1415
+ - https://my.matterport.com/show/*
1416
+ - https://my.panomoments.com/*
840
1417
  - https://my.storygami.com/video/*
1418
+ - https://my.webboards.fr/*
1419
+ - https://mybeweeg.com/w/*
1420
+ - https://mymixtapez.com/*
1421
+ - https://myvideoplace.tv/*
1422
+ - https://namchey.com/*
1423
+ - https://naturalatlas.com/*
1424
+ - https://nbcnews.com/*
1425
+ - https://neatclip.com/*
841
1426
  - https://newhive.com/*/*
842
1427
  - https://newhive.com/*/*
1428
+ - https://nodalview.com/*
1429
+ - https://nom.com/post/*
1430
+ - https://npmcharts.com/*
1431
+ - https://nr8.com/embed/*
1432
+ - https://nuggetcharts.com/*
1433
+ - https://oddshot.tv/*
1434
+ - https://odiocast.com/*
1435
+ - https://oice.com/*
1436
+ - https://okluffa.com/*
1437
+ - https://omniscope.me/*
1438
+ - https://omny.fm/*
843
1439
  - https://open.spotify.com/*
1440
+ - https://openings.moe/*
1441
+ - https://openprocessing.org/*
1442
+ - https://orbitvu.com/001/*
844
1443
  - https://oumy.com/v/*
1444
+ - https://overflow.io/*
1445
+ - https://parkfy.com/*
1446
+ - https://pasteapp.com/*
1447
+ - https://pastebin.com/*
1448
+ - https://patching.io/*
1449
+ - https://pinecast.co/*
1450
+ - https://pippa.io/*
1451
+ - https://pixdor.com/*
1452
+ - https://pl.kotl.in/*
1453
+ - https://platform.vixyvideo.com/*
1454
+ - https://platform.vixyvideo.com/*
1455
+ - https://play.buto.tv/*
1456
+ - https://play.kotlinlang.org/embed#*
1457
+ - https://play.radiopublic.com/*
1458
+ - https://play.soundsgood.co/*
845
1459
  - https://play.spotify.com/*
1460
+ - https://player.entrypoint.live/*
1461
+ - https://player.megaphone.fm/*
846
1462
  - https://player.videopath.com/*
847
1463
  - https://player.vimeo.com/*
848
- - https://plays.tv/video/*
1464
+ - https://players.brightcove.net/*
1465
+ - https://playpost.app/*
1466
+ - https://plays.tv/*/*
1467
+ - https://plnkr.co/*
1468
+ - https://plnkr.co/*
1469
+ - https://plotly.com/*
849
1470
  - https://plus.google.com/*
850
- - https://pollplug.com/poll/*
851
- - https://portfolium.com/entry/*
852
- - https://projects.invisionapp.com/share/*
1471
+ - https://polarishare.com/*
1472
+ - https://polaroidswing.com/p/*
1473
+ - https://pollforall.com/*
1474
+ - https://pollsify.com/*
1475
+ - https://pollstar.com/*
1476
+ - https://popchest.com/*/
1477
+ - https://portal.paratii.video/*
1478
+ - https://posixion.com/*
1479
+ - https://powered.by.rabbut.com/p/*
1480
+ - https://pressekompass.net/*
1481
+ - https://prezi.com/*/*
1482
+ - https://procfu.com/*
1483
+ - https://producthunt.com/*
853
1484
  - https://public.chartblocks.com/c/*
854
1485
  - https://publicgood.com/campaign/*
1486
+ - https://publicgood.com/org/*
1487
+ - https://publicgood.com/org/*/campaign/*
1488
+ - https://publicinput.com/*
1489
+ - https://publish.viostream.com/play/*
1490
+ - https://publit.io/*
855
1491
  - https://publons.com/author/*
1492
+ - https://pulse.qa/*
1493
+ - https://qanda.co/q/*
1494
+ - https://quantum-circuit.com/*
1495
+ - https://qumucloud.com/*
856
1496
  - https://quora.com/*/answer/*
1497
+ - https://qwip.in/watch/*
857
1498
  - https://qwip.it/watch/*
1499
+ - https://radiopublic.com/*
858
1500
  - https://rapidengage.com/s/*
1501
+ - https://rave.dj/*
1502
+ - https://reading.fm/*
859
1503
  - https://readtapestry.com/s/*/
1504
+ - https://redivis.com/r/*
860
1505
  - https://reelhouse.org/*
1506
+ - https://registry.bitmark.com/*
1507
+ - https://rekt.gg/*
861
1508
  - https://relayto.com/*
1509
+ - https://relive.cc/view/*
1510
+ - https://repl.it/*
1511
+ - https://repl.it/*
1512
+ - https://replay.infinity.fm/*
1513
+ - https://represent.com/*
1514
+ - https://reuters.com/video/*
1515
+ - https://riffsy.com/*
862
1516
  - https://rocketium.com/*
1517
+ - https://rogertalk.com/*
1518
+ - https://roshiclips.com/watch*
1519
+ - https://rumble.com/*
1520
+ - https://runelm.io/*/*
1521
+ - https://runkit.com/*
1522
+ - https://scalafiddle.io/*
1523
+ - https://scapic.com/*
1524
+ - https://scorebat.com/*
863
1525
  - https://screen.yahoo.com/*/*
1526
+ - https://screenhunters.com/*
864
1527
  - https://scribblemaps.com/maps/view/*/*
1528
+ - https://scribd.com/doc/*
1529
+ - https://scribd.com/documents/*
1530
+ - https://scribd.com/mobile/documents/*
1531
+ - https://scrimba.com/*
1532
+ - https://searchie.io/*
1533
+ - https://secure.plays.tv/*/*
1534
+ - https://seekbeak.com/v/*
865
1535
  - https://sendvid.com/*
1536
+ - https://serenader.io/*
1537
+ - https://services.momindum.com/embedly/*
866
1538
  - https://sfx.io/*
1539
+ - https://sheetsu.com/tables/*
1540
+ - https://sidewire.com/*/*/*
1541
+ - https://simmer.io/*/*
867
1542
  - https://sketchfab.com/models/*
868
1543
  - https://sketchfab.com/show/*
869
- - https://skitch.com/*/*/*
1544
+ - https://skip.st/one/*
1545
+ - https://sleeperbot.com/share/*
1546
+ - https://slidesha.re/*
1547
+ - https://slidetosubscribe.com/*
870
1548
  - https://slidr.io/*/*
1549
+ - https://snack.expo.io/*
1550
+ - https://snappd\.tv/*
1551
+ - https://snipaclip.com/*
1552
+ - https://snipit.io/*
1553
+ - https://socialexplorer.com/*
1554
+ - https://song.link/*
871
1555
  - https://soundcloud.com/*
872
1556
  - https://soundcloud.com/*/*
873
1557
  - https://soundcloud.com/*/sets/*
874
1558
  - https://soundcloud.com/groups/*
1559
+ - https://spaces.archilogic.com/3d/*
1560
+ - https://spaces.archilogic.com/model/*
875
1561
  - https://speakerdeck.com/*/*
1562
+ - https://speakytext.com/*
1563
+ - https://sphereplay.com/*
1564
+ - https://spiegel.de/video/*
1565
+ - https://spkt.io/*
1566
+ - https://spott.tv/*
1567
+ - https://spreaker.com/*
1568
+ - https://sproutvideo.com/videos/*
1569
+ - https://stackblitz.com/*
1570
+ - https://stagevids.com/watch*
1571
+ - https://stanza.co/*
876
1572
  - https://stepic.org/*
877
- - https://storify.com/*/*
1573
+ - https://stonly.com/*
1574
+ - https://store.pixdor.com/*
1575
+ - https://storeo.io/*
1576
+ - https://stories.nws.ai/*
1577
+ - https://storribook.com/articles/view/*/*
1578
+ - https://storyforj.com/*
1579
+ - https://storygami.com/v/*
1580
+ - https://storymaps.arcgis.com/stories/*
878
1581
  - https://streamable.com/*
879
1582
  - https://streamio.com/api/v1/*
880
- - https://sway.com/*
1583
+ - https://streamr.network/*
1584
+ - https://sudomemo.net/*
1585
+ - https://superstack.io/v/*
1586
+ - https://supgif.com/*
1587
+ - https://svrf.com/*
1588
+ - https://sway.office.com/*
1589
+ - https://swiftsnip.com/*
1590
+ - https://swymrelay.com/*
1591
+ - https://talkshow.im/show/*
1592
+ - https://tambur.co/*
1593
+ - https://tapewrite.com/*
1594
+ - https://tech.io/snippet/*
1595
+ - https://tenor.co/*
1596
+ - https://tenor.com/*
1597
+ - https://terminaid.com/*
1598
+ - https://texblocks.com/*
1599
+ - https://theguardian.com/*/video/*/*/*/*
1600
+ - https://theonion.com/video/*
1601
+ - https://thesportsme.com/*
1602
+ - https://thinglink.com/*
1603
+ - https://threesixty.tours/*
1604
+ - https://tiktok.com/*
1605
+ - https://today.msnbc.msn.com/id/*/ns/*
1606
+ - https://today.msnbc.msn.com/id/*/vp/*
881
1607
  - https://tr.instela.com/*
1608
+ - https://tumblr.com/*
882
1609
  - https://tun.in/*
883
1610
  - https://tunein.com/*
1611
+ - https://twitch.tv/*
1612
+ - https://typecast.ai/*
1613
+ - https://uilicious.com/*
884
1614
  - https://uploadly.com/*
1615
+ - https://upscri.be/*
885
1616
  - https://urtak.com/clr/*
886
1617
  - https://urtak.com/u/*
1618
+ - https://usehappen.com/*
1619
+ - https://useloom.com/share/*
887
1620
  - https://v.embedly.com/*
1621
+ - https://vectary.com/*
1622
+ - https://vectorlogo.zone/*
1623
+ - https://verasity.io/player*
1624
+ - https://verse.com/stories/*
888
1625
  - https://vid.me/*
889
1626
  - https://vidd.me/*
890
1627
  - https://video.esri.com/*
1628
+ - https://video.forbes.com/fvn/*
1629
+ - https://video.foxbusiness.com/v/*
1630
+ - https://video.foxnews.com/v/*
891
1631
  - https://video214.com/play/*
1632
+ - https://vidgrid.com/*
1633
+ - https://vidl.it/*
1634
+ - https://view.genial.ly/*
892
1635
  - https://view.stacker.cc/*
1636
+ - https://viewer.archilogic.com/*http://spaces.archilogic.com/3d/*
1637
+ - https://vilynx.com/video/*
893
1638
  - https://vimeo.com/*
1639
+ - https://vimsical.com/vims/*
894
1640
  - https://vine.co/v/*
1641
+ - https://vizamp.com/player/*
1642
+ - https://vizor.io/*/*
1643
+ - https://vizydrop.com/*
1644
+ - https://vlipsy.com/*
1645
+ - https://vlurb.co/*
1646
+ - https://voicepods.com/*
1647
+ - https://vrbfoto.com/f/*
1648
+ - https://vrchive.com/*
1649
+ - https://vysda.com/*
895
1650
  - https://w.graphiq.com/w/*
1651
+ - https://walkinto.in/*/*
1652
+ - https://webassembly.studio/*
1653
+ - https://websitevoice.com/*
1654
+ - https://wedonthavetime.org/*
1655
+ - https://weekendsuperheroes.com/*
1656
+ - https://whooshkaa.com/*
896
1657
  - https://wi.st/*
1658
+ - https://widgetic.com/*
1659
+ - https://widgets.feedbeaver.com/*
897
1660
  - https://wistia.com/*
1661
+ - https://with.in/watch/*
1662
+ - https://withkoji.com/*
1663
+ - https://wonderbooth.com.my/*
1664
+ - https://worthyt.io/*
1665
+ - https://wribbn.com/*
1666
+ - https://writeinstone.com/*
898
1667
  - https://www.allego.com/*
1668
+ - https://www.altizure.com/project/*
1669
+ - https://www.alugha.com/videos/*
1670
+ - https://www.askwhale.com/q/*
1671
+ - https://www.boston.com/*video*
1672
+ - https://www.boston.com/video*
1673
+ - https://www.braid.io/embed-tile/*
899
1674
  - https://www.brainshark.com/*/*
900
1675
  - https://www.branchtrack.com/projects/*
901
1676
  - https://www.calameo.com/*
1677
+ - https://www.canva.com/design/*
1678
+ - https://www.changelog.com/*
902
1679
  - https://www.clippituser.tv/*
1680
+ - https://www.cnbc.com/id/*/play/1/video/*
1681
+ - https://www.cnbc.com/id/*?*video*
1682
+ - https://www.cnn.com/video/*
1683
+ - https://www.cnn.com/videos/*
1684
+ - https://www.cnn.com/videos/*
1685
+ - https://www.codiva.io/p/*
1686
+ - https://www.datasmoothie.com/*/*
1687
+ - https://www.dnbradio.com/*
903
1688
  - https://www.dreambroker.com/channel/*
904
- - https://www.etsy.com/*
1689
+ - https://www.exif.co/*/i/*
905
1690
  - https://www.facebook.com/*/photos/*
906
1691
  - https://www.facebook.com/*/posts/*
907
1692
  - https://www.facebook.com/*/videos/*
1693
+ - https://www.facebook.com/events/*
908
1694
  - https://www.facebook.com/photo.php*
909
1695
  - https://www.facebook.com/video.php*
1696
+ - https://www.figma.com/file/*
1697
+ - https://www.figma.com/proto/*
910
1698
  - https://www.flat.io/score/*
1699
+ - https://www.flickr.com/photos/*
911
1700
  - https://www.foursquare.com/*
1701
+ - https://www.frontback.me/p/*
1702
+ - https://www.fwdeveryone.com/t/*
912
1703
  - https://www.ganxy.com/*
1704
+ - https://www.getsportsme.com/*
913
1705
  - https://www.gifs.com/*
914
1706
  - https://www.gifs.com/gif/*
915
1707
  - https://www.globalgiving.org/funds/*
916
1708
  - https://www.globalgiving.org/microprojects/*
917
1709
  - https://www.globalgiving.org/projects/*
918
1710
  - https://www.google.*/maps/*
1711
+ - https://www.gradba.se/v/*
1712
+ - https://www.graphiq.com/w/*
1713
+ - https://www.guardian.co.uk/*/video/*/*/*/*
1714
+ - https://www.hapyak.com/embed/*
1715
+ - https://www.highly.co/hl/*
1716
+ - https://www.icloud.com/keynote/*
919
1717
  - https://www.instagram.com/p/*
1718
+ - https://www.iorad.com/player/*
1719
+ - https://www.ipushpull.com/pages/domains/*/pages/*
1720
+ - https://www.jauntvr.com/title/*
920
1721
  - https://www.khanacademy.org/*
1722
+ - https://www.kickstarter.com/projects/*/*
1723
+ - https://www.last.fm/music/*
1724
+ - https://www.last.fm/music/*/*
1725
+ - https://www.last.fm/music/*/_/*
1726
+ - https://www.last.fm/music/+images/*
1727
+ - https://www.last.fm/music/+videos/*
1728
+ - https://www.magisto.com/*
1729
+ - https://www.maphubs.com/user/*/map/*
1730
+ - https://www.maprosoft.com/app/map*
1731
+ - https://www.maven.video/*
1732
+ - https://www.medibang.com/sv/*
1733
+ - https://www.megafono.io/*
1734
+ - https://www.moviemogul.io/*
1735
+ - https://www.msnbc.msn.com/*/watch/*
1736
+ - https://www.msnbc.msn.com/id/*/ns/*
1737
+ - https://www.msnbc.msn.com/id/*/vp/*
1738
+ - https://www.nbcnews.com/*
921
1739
  - https://www.newhive.com/*/*
1740
+ - https://www.npr.org/*/*/*/*/*
1741
+ - https://www.npr.org/*/*/*/*/*/*
1742
+ - https://www.npr.org/*/*/*/*/*/*/*
1743
+ - https://www.npr.org/templates/story/story.php*
1744
+ - https://www.oddshot.tv/*
922
1745
  - https://www.oumy.com/v/*
1746
+ - https://www.pastery.net/*
1747
+ - https://www.pexels.com/photo/*
1748
+ - https://www.popchest.com/*/
923
1749
  - https://www.publons.com/author/*
924
1750
  - https://www.quora.com/*/answer/*
1751
+ - https://www.qzzr.com/quiz/*
1752
+ - https://www.radiopublic.com/*
1753
+ - https://www.rdio.com/#/artist/*/album/*
1754
+ - https://www.rdio.com/artist/*/album/*
1755
+ - https://www.redivis.com/r/*
925
1756
  - https://www.reelhouse.org/*
1757
+ - https://www.rekt.gg/*
926
1758
  - https://www.relayto.com/*
1759
+ - https://www.relive.cc/view/*
1760
+ - https://www.reuters.com/video/*
1761
+ - https://www.rogertalk.com/*
927
1762
  - https://www.scribblemaps.com/maps/view/*/*
1763
+ - https://www.scribd.com/doc/*
1764
+ - https://www.scribd.com/documents/*
1765
+ - https://www.scribd.com/mobile/documents/*
1766
+ - https://www.simplecast.com/s/*
1767
+ - https://www.slideshare.net/*/*
1768
+ - https://www.slideshare.net/mobile/*/*
1769
+ - https://www.sociale.co/question/*
1770
+ - https://www.socialexplorer.com/*
1771
+ - https://www.spiegel.de/video/*
928
1772
  - https://www.streamio.com/api/v1/*
1773
+ - https://www.sudomemo.net/*
1774
+ - https://www.talkshow.im/show/*
1775
+ - https://www.ted.com/index.php/talks/*.html*
1776
+ - https://www.ted.com/index.php/talks/lang/*/*.html*
1777
+ - https://www.ted.com/talks/*
1778
+ - https://www.ted.com/talks/*.html*
1779
+ - https://www.ted.com/talks/lang/*/*.html*
1780
+ - https://www.theguardian.com/*/video/*/*/*/*
1781
+ - https://www.theonion.com/video/*
1782
+ - https://www.vevo.com/video/*
1783
+ - https://www.vevo.com/watch/*
1784
+ - https://www.vibby.com/v/*
929
1785
  - https://www.vibby.com/watch*
930
1786
  - https://www.vimeo.com/*
931
1787
  - https://www.vine.co/v/*
1788
+ - https://www.vizamp.com/player/*
932
1789
  - https://www.wedgies.com/question/*
1790
+ - https://www.wikimedia.org/wiki/File*
1791
+ - https://www.wikipedia.org/wiki/*
1792
+ - https://www.yelp.com/*&hrid=.+
933
1793
  - https://www.youtube.com/attribution_link*
934
1794
  - https://www.youtube.com/embed/*
935
1795
  - https://www.youtube.com/gif*
1796
+ - https://www.zeit.de/video/*
1797
+ - https://xtracomedy.com/*
936
1798
  - https://yahoo.com/movies/*
937
1799
  - https://youtu.be/*
938
1800
  - https://youtube.ca/*
@@ -946,3 +1808,8 @@
946
1808
  - https://youtube.jp/*
947
1809
  - https://youtube.nl/*
948
1810
  - https://youtube.pl/*
1811
+ - https://zeit.de/video/*
1812
+ - https://ziggeo.io/*
1813
+ - https://zoomable.ca/*
1814
+ - https?://embed.ly/code*
1815
+ - https?://kuula.co/post/*