ruby-oembed 0.10.1 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +11 -2
- data/.travis.yml +3 -6
- data/CHANGELOG.rdoc +34 -0
- data/Gemfile +10 -10
- data/README.md +47 -13
- data/Rakefile +2 -0
- data/lib/oembed/providers.rb +68 -34
- data/lib/oembed/providers/{embedly_urls.yml → aggregators/embedly_urls.yml} +934 -281
- data/lib/oembed/providers/aggregators/noembed_urls.yml +321 -0
- data/lib/oembed/providers/{oohembed_urls.yml → aggregators/oohembed_urls.yml} +0 -0
- data/lib/oembed/providers/facebook_post.rb +25 -0
- data/lib/oembed/providers/facebook_video.rb +18 -0
- data/lib/oembed/providers/instagram.rb +28 -0
- data/lib/oembed/version.rb +2 -2
- data/lib/tasks/oembed.rake +24 -23
- data/ruby-oembed.gemspec +3 -31
- data/spec/cassettes/OEmbed_Provider.yml +882 -119
- data/spec/cassettes/OEmbed_ProviderDiscovery.yml +26007 -35598
- data/spec/cassettes/OEmbed_Providers_Slideshare.yml +1024 -790
- data/spec/cassettes/OEmbed_Providers_Twitter.yml +447 -238
- data/spec/provider_discovery_spec.rb +2 -7
- data/spec/provider_spec.rb +9 -16
- data/spec/providers/facebook_spec.rb +50 -0
- data/spec/providers_spec.rb +48 -0
- data/spec/spec_helper.rb +3 -1
- data/spec/spec_helper_examples.yml +6 -16
- metadata +13 -78
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2ce690eea65c79e7df55ec323c59bf8c2ec43c9b94c1f084ad558b70c392cef9
|
4
|
+
data.tar.gz: b964d57ad3902a1dc99911aecc7f7f566a89ce2b6fdaa22ab34763c01a4e8aba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e694d02b886ff90fa2d14afcbaefeda99ab258e632d8126e0e2d61c308edb0eb3001cd517ce1342e3eea033d31eeca1a8016068392e406689ffb08c95242c02
|
7
|
+
data.tar.gz: 3aba0c2994ae8fa2b87a172e03dfb4a529eec7ccfabd393b2182a91822bb4856ae2409983d0cb3755a092a191729d0af84c755f14e384a3cd5a2ce9c80b814f6
|
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
|
data/.travis.yml
CHANGED
data/CHANGELOG.rdoc
CHANGED
@@ -1,5 +1,39 @@
|
|
1
1
|
= CHANGELOG
|
2
2
|
|
3
|
+
== Unreleased (0.14.1)
|
4
|
+
|
5
|
+
|
6
|
+
== 0.14.0 - 5 November 2020
|
7
|
+
|
8
|
+
* Add support for Facebook/Instragram access tokens; Pull #75 (Inge Jørgensen)
|
9
|
+
|
10
|
+
== 0.13.1 - 25 May 2020
|
11
|
+
|
12
|
+
* Update built-in Instagram provider to support Instgram TV URLs; Pull #72 (github.com/Alexey1100)
|
13
|
+
|
14
|
+
== 0.13.0 - 3 April 2020
|
15
|
+
|
16
|
+
* *BREAKING* Remove support for very old versions of Rubygems (older than 1.2.0 which was released in 2008)
|
17
|
+
* *DEPRECATION* Remove CI testing for EOLed Ruby versions; now only testing on Ruby 2.4.1 and newer
|
18
|
+
* Updated the list of {Embedly}[https://embed.ly/] and {Noembed}[https://noembed.com/] URL schemes.
|
19
|
+
|
20
|
+
A *huge* thank you to {Ian Ker-Seymer}[https://github.com/ianks] for his recent PR that implemented _all_ of the above improvements!
|
21
|
+
|
22
|
+
== 0.12.0 - 26 March 2017
|
23
|
+
|
24
|
+
* Add a Noembed aggregator; Issue #32 (github.com/evaryont and Arnaud Leymet)
|
25
|
+
* Updated the list of {Embedly}[http://embed.ly] URL schemes.
|
26
|
+
* Remove the `rake oembed:update_oohembed` task.
|
27
|
+
|
28
|
+
== 0.11.0 - 26 March 2017
|
29
|
+
|
30
|
+
* Add built-in Speaker Deck provider; Issue #67 (Camille Roux)
|
31
|
+
* Add built-in Giphy provider
|
32
|
+
* Add built-in Kickstarter provider
|
33
|
+
* Add built-in TED provider
|
34
|
+
* Add built-in CodePen provider
|
35
|
+
* Update built-in Hulu provider to support https
|
36
|
+
|
3
37
|
== 0.10.1 - 21 May 2016
|
4
38
|
|
5
39
|
* Update built-in Twitter provider to use the new Twitter oEmbed endpoint; Pull #60 (Ben Ramsey)
|
data/Gemfile
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
|
-
|
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
|
|
13
7
|
gem 'coveralls', require: false
|
14
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
|
+
|
15
16
|
group :guard do
|
16
|
-
gem
|
17
|
-
gem
|
18
|
-
gem "rb-fsevent"
|
17
|
+
gem 'guard-rspec'
|
18
|
+
gem 'guard-bundler'
|
19
19
|
end
|
data/README.md
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/ruby-oembed)
|
4
4
|
[](https://travis-ci.org/ruby-oembed/ruby-oembed/branches)
|
5
|
-
[](https://codeclimate.com/github/ruby-oembed/ruby-oembed)
|
6
6
|
[](https://coveralls.io/github/ruby-oembed/ruby-oembed?branch=coveralls)
|
7
|
-

|
8
8
|
|
9
9
|
|
10
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.
|
@@ -15,12 +15,13 @@ An oEmbed consumer library written in Ruby, letting you easily get embeddable HT
|
|
15
15
|
|
16
16
|
# Get Started
|
17
17
|
|
18
|
-
## Providers
|
18
|
+
## Built-in Providers
|
19
19
|
|
20
|
-
|
20
|
+
The easiest way to use this library is to make use of the built-in providers.
|
21
21
|
|
22
22
|
```ruby
|
23
|
-
|
23
|
+
OEmbed::Providers.register_all
|
24
|
+
resource = OEmbed::Providers.get('http://www.youtube.com/watch?v=2BYXBC8WQ5k')
|
24
25
|
resource.video? #=> true
|
25
26
|
resource.thumbnail_url #=> "http://i3.ytimg.com/vi/2BYXBC8WQ5k/hqdefault.jpg"
|
26
27
|
resource.html #=> <<-HTML
|
@@ -33,30 +34,61 @@ resource.html #=> <<-HTML
|
|
33
34
|
HTML
|
34
35
|
```
|
35
36
|
|
37
|
+
### Providers requiring an access token
|
38
|
+
|
39
|
+
Some built-in providers require authorization in order to work. These providers won't be registered unless an access token is provided. You can either pass access tokens to the `register_app` method.
|
40
|
+
|
41
|
+
```ruby
|
42
|
+
OEmbed::Providers.register_all(access_tokens: { facebook: @my_facebook_token })
|
43
|
+
```
|
44
|
+
|
45
|
+
Or you can provide access tokens via environment variable
|
46
|
+
```ruby
|
47
|
+
ENV['OEMBED_FACEBOOK_TOKEN'] #=> 'my-access-token'
|
48
|
+
OEmbed::Providers.register_all
|
49
|
+
```
|
50
|
+
|
51
|
+
#### Currently supported access tokens
|
52
|
+
|
53
|
+
| access_token | environment variable | Associaed Providers |
|
54
|
+
|--------------|-------------------------|---------------------|
|
55
|
+
| `:facebook` | `OEMBED_FACEBOOK_TOKEN` | `FacebookPost`, `FacebookVideo`, `Instagram` |
|
56
|
+
|
57
|
+
## Custom Providers
|
58
|
+
|
36
59
|
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
60
|
|
38
61
|
```ruby
|
39
62
|
my_provider = OEmbed::Provider.new("http://my.cool-service.com/api/oembed_endpoint.{format}")
|
40
63
|
my_provider << "http://*.cool-service.com/image/*"
|
41
64
|
my_provider << "http://*.cool-service.com/video/*"
|
65
|
+
```
|
66
|
+
|
67
|
+
You can then use your new custom provider *or* you can register it along with the rest of the built-in providers.
|
68
|
+
|
69
|
+
```ruby
|
42
70
|
resource = my_provider.get("http://a.cool-service.com/video/1") #=> OEmbed::Response
|
43
71
|
resource.provider.name #=> "My Cool Service"
|
72
|
+
|
73
|
+
OEmbed::Providers.register(my_provider)
|
74
|
+
resource = OEmbed::Providers.get("http://a.cool-service.com/video/2") #=> OEmbed::Response
|
44
75
|
```
|
45
76
|
|
46
|
-
|
77
|
+
## Fallback Providers
|
78
|
+
|
79
|
+
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.
|
47
80
|
|
48
81
|
```ruby
|
49
|
-
OEmbed::Providers.
|
50
|
-
|
51
|
-
|
52
|
-
|
82
|
+
OEmbed::Providers.register_fallback(
|
83
|
+
OEmbed::ProviderDiscovery,
|
84
|
+
OEmbed::Providers::Noembed
|
85
|
+
)
|
86
|
+
OEmbed::Providers.get('https://www.xkcd.com/802/') #=> OEmbed::Response
|
53
87
|
```
|
54
88
|
|
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
89
|
## Formatters
|
58
90
|
|
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.
|
91
|
+
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).
|
60
92
|
|
61
93
|
```ruby
|
62
94
|
require 'json'
|
@@ -74,6 +106,8 @@ The following, optional, backends are currently supported:
|
|
74
106
|
|
75
107
|
# Lend a Hand
|
76
108
|
|
109
|
+
**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)
|
110
|
+
|
77
111
|
Code for the ruby-oembed library is [hosted on GitHub](https://github.com/ruby-oembed/ruby-oembed).
|
78
112
|
|
79
113
|
```bash
|
data/Rakefile
CHANGED
data/lib/oembed/providers.rb
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'yaml'
|
3
3
|
|
4
|
+
require 'oembed/providers/facebook_post'
|
5
|
+
require 'oembed/providers/facebook_video'
|
6
|
+
require 'oembed/providers/instagram'
|
7
|
+
|
4
8
|
module OEmbed
|
5
9
|
# Allows OEmbed to perform tasks across several, registered, Providers
|
6
10
|
# at once.
|
@@ -44,8 +48,11 @@ module OEmbed
|
|
44
48
|
# Register all Providers built into this gem.
|
45
49
|
# The including_sub_type parameter should be one of the following values:
|
46
50
|
# * :aggregators: also register provider aggregator endpoints, like Embedly
|
47
|
-
|
51
|
+
# The access_token keys can be one of the following:
|
52
|
+
# * :facebook: See https://developers.facebook.com/docs/instagram/oembed#access-tokens
|
53
|
+
def register_all(*including_sub_type, access_tokens: {})
|
48
54
|
register(*@@to_register[""])
|
55
|
+
register_access_token_providers(access_tokens)
|
49
56
|
including_sub_type.each do |sub_type|
|
50
57
|
register(*@@to_register[sub_type.to_s])
|
51
58
|
end
|
@@ -64,7 +71,7 @@ module OEmbed
|
|
64
71
|
# will be called (in order) with the URL.
|
65
72
|
#
|
66
73
|
# A common example:
|
67
|
-
# OEmbed::Providers.register_fallback(OEmbed::ProviderDiscovery, OEmbed::Providers::
|
74
|
+
# OEmbed::Providers.register_fallback(OEmbed::ProviderDiscovery, OEmbed::Providers::Noembed)
|
68
75
|
def register_fallback(*providers)
|
69
76
|
@@fallback += providers
|
70
77
|
end
|
@@ -122,6 +129,20 @@ module OEmbed
|
|
122
129
|
@@to_register[sub_type.to_s] ||= []
|
123
130
|
@@to_register[sub_type.to_s] << provider_class
|
124
131
|
end
|
132
|
+
|
133
|
+
# Takes a Hash of tokens, and registers providers that use the given tokens.
|
134
|
+
# Also supports "OEMBED_*_TOKEN" environment variables.
|
135
|
+
# Currently supported tokens:
|
136
|
+
# * facebook: See https://developers.facebook.com/docs/instagram/oembed#access-tokens
|
137
|
+
def register_access_token_providers(access_tokens)
|
138
|
+
tokens = { facebook: ENV['OEMBED_FACEBOOK_TOKEN'] }.merge(access_tokens)
|
139
|
+
|
140
|
+
if tokens[:facebook]
|
141
|
+
register OEmbed::Providers::FacebookPost.new(access_token: tokens[:facebook])
|
142
|
+
register OEmbed::Providers::FacebookVideo.new(access_token: tokens[:facebook])
|
143
|
+
register OEmbed::Providers::Instagram.new(access_token: tokens[:facebook])
|
144
|
+
end
|
145
|
+
end
|
125
146
|
end
|
126
147
|
|
127
148
|
# Custom providers:
|
@@ -143,6 +164,12 @@ module OEmbed
|
|
143
164
|
Youtube << "https://*.youtu.be/*"
|
144
165
|
add_official_provider(Youtube)
|
145
166
|
|
167
|
+
# Provider for codepen.io
|
168
|
+
CodePen = OEmbed::Provider.new("https://codepen.io/api/oembed")
|
169
|
+
CodePen << "http://codepen.io/*"
|
170
|
+
CodePen << "https://codepen.io/*"
|
171
|
+
add_official_provider(CodePen)
|
172
|
+
|
146
173
|
# Provider for flickr.com
|
147
174
|
Flickr = OEmbed::Provider.new("https://www.flickr.com/services/oembed/")
|
148
175
|
Flickr << "http://*.flickr.com/*"
|
@@ -170,8 +197,9 @@ module OEmbed
|
|
170
197
|
add_official_provider(Revision3)
|
171
198
|
|
172
199
|
# Provider for hulu.com
|
173
|
-
Hulu = OEmbed::Provider.new("
|
200
|
+
Hulu = OEmbed::Provider.new("https://www.hulu.com/api/oembed.{format}")
|
174
201
|
Hulu << "http://www.hulu.com/watch/*"
|
202
|
+
Hulu << "https://www.hulu.com/watch/*"
|
175
203
|
add_official_provider(Hulu)
|
176
204
|
|
177
205
|
# Provider for vimeo.com
|
@@ -194,36 +222,6 @@ module OEmbed
|
|
194
222
|
Vine << "https://*.vine.co/v/*"
|
195
223
|
add_official_provider(Vine)
|
196
224
|
|
197
|
-
# Provider for instagram.com
|
198
|
-
# https://instagr.am/developer/embedding/
|
199
|
-
Instagram = OEmbed::Provider.new("https://api.instagram.com/oembed", :json)
|
200
|
-
Instagram << "http://instagr.am/p/*"
|
201
|
-
Instagram << "http://instagram.com/p/*"
|
202
|
-
Instagram << "http://www.instagram.com/p/*"
|
203
|
-
Instagram << "https://instagr.am/p/*"
|
204
|
-
Instagram << "https://instagram.com/p/*"
|
205
|
-
Instagram << "https://www.instagram.com/p/*"
|
206
|
-
add_official_provider(Instagram)
|
207
|
-
|
208
|
-
# Providers for Facebook Posts & Videos
|
209
|
-
# https://developers.facebook.com/docs/plugins/oembed-endpoints
|
210
|
-
FacebookPost = OEmbed::Provider.new('https://www.facebook.com/plugins/post/oembed.json/', :json)
|
211
|
-
FacebookPost << 'https://www.facebook.com/*/posts/*'
|
212
|
-
FacebookPost << 'https://www.facebook.com/*/activity/*'
|
213
|
-
FacebookPost << 'https://www.facebook.com/photo*'
|
214
|
-
FacebookPost << 'https://www.facebook.com/photos*'
|
215
|
-
FacebookPost << 'https://www.facebook.com/*/photos*'
|
216
|
-
FacebookPost << 'https://www.facebook.com/permalink*'
|
217
|
-
FacebookPost << 'https://www.facebook.com/media*'
|
218
|
-
FacebookPost << 'https://www.facebook.com/questions*'
|
219
|
-
FacebookPost << 'https://www.facebook.com/notes*'
|
220
|
-
add_official_provider(FacebookPost)
|
221
|
-
|
222
|
-
FacebookVideo = OEmbed::Provider.new('https://www.facebook.com/plugins/video/oembed.json/', :json)
|
223
|
-
FacebookVideo << 'https://www.facebook.com/*/videos/*'
|
224
|
-
FacebookVideo << 'https://www.facebook.com/video*'
|
225
|
-
add_official_provider(FacebookVideo)
|
226
|
-
|
227
225
|
# Provider for slideshare.net
|
228
226
|
# http://www.slideshare.net/developers/oembed
|
229
227
|
Slideshare = OEmbed::Provider.new("https://www.slideshare.net/api/oembed/2")
|
@@ -239,12 +237,24 @@ module OEmbed
|
|
239
237
|
Yfrog << "http://yfrog.com/*"
|
240
238
|
add_official_provider(Yfrog)
|
241
239
|
|
240
|
+
# Provider for Giphy
|
241
|
+
Giphy = OEmbed::Provider.new("http://giphy.com/services/oembed")
|
242
|
+
Giphy << "http://giphy.com/*"
|
243
|
+
Giphy << "https://giphy.com/*"
|
244
|
+
add_official_provider(Giphy)
|
245
|
+
|
242
246
|
# Provider for imgur.com
|
243
247
|
Imgur = OEmbed::Provider.new("https://api.imgur.com/oembed.{format}")
|
244
248
|
Imgur << "https://*.imgur.com/gallery/*"
|
245
249
|
Imgur << "http://*.imgur.com/gallery/*"
|
246
250
|
add_official_provider(Imgur)
|
247
251
|
|
252
|
+
# Provider for Kickstarter
|
253
|
+
Kickstarter = OEmbed::Provider.new("https://www.kickstarter.com/services/oembed")
|
254
|
+
Kickstarter << "http://www.kickstarter.com/projects/*"
|
255
|
+
Kickstarter << "https://www.kickstarter.com/projects/*"
|
256
|
+
add_official_provider(Kickstarter)
|
257
|
+
|
248
258
|
# provider for mlg-tv
|
249
259
|
# http://tv.majorleaguegaming.com/oembed
|
250
260
|
MlgTv = OEmbed::Provider.new("http://tv.majorleaguegaming.com/oembed")
|
@@ -285,6 +295,13 @@ module OEmbed
|
|
285
295
|
Scribd << "http://*.scribd.com/*"
|
286
296
|
add_official_provider(Scribd)
|
287
297
|
|
298
|
+
# Provider for speakerdeck.com
|
299
|
+
# https://speakerdeck.com/faq#oembed
|
300
|
+
SpeakerDeck = OEmbed::Provider.new("https://speakerdeck.com/oembed.json")
|
301
|
+
SpeakerDeck << "http://speakerdeck.com/*/*"
|
302
|
+
SpeakerDeck << "https://speakerdeck.com/*/*"
|
303
|
+
add_official_provider(SpeakerDeck)
|
304
|
+
|
288
305
|
# Provider for movieclips.com
|
289
306
|
MovieClips = OEmbed::Provider.new("http://movieclips.com/services/oembed/")
|
290
307
|
MovieClips << "http://movieclips.com/watch/*/*/"
|
@@ -320,6 +337,12 @@ module OEmbed
|
|
320
337
|
Skitch << "https://*.skitch.com/*"
|
321
338
|
add_official_provider(Skitch)
|
322
339
|
|
340
|
+
# Provider for TED
|
341
|
+
Ted = OEmbed::Provider.new("https://www.ted.com/talks/oembed.{format}")
|
342
|
+
Ted << "http://*.ted.com/talks/*"
|
343
|
+
Ted << "https://*.ted.com/talks/*"
|
344
|
+
add_official_provider(Ted)
|
345
|
+
|
323
346
|
# Provider for tumblr.com
|
324
347
|
Tumblr = OEmbed::Provider.new("http://www.tumblr.com/oembed/1.0/", :json)
|
325
348
|
Tumblr << "http://*.tumblr.com/post/*"
|
@@ -378,6 +401,17 @@ module OEmbed
|
|
378
401
|
OohEmbed << %r{http://yfrog.(com|ru|com.tr|it|fr|co.il|co.uk|com.pl|pl|eu|us)/(.*?)} # image & video hosting
|
379
402
|
OohEmbed << "http://*.youtube.com/watch*"
|
380
403
|
|
404
|
+
# Provider for noembed.com, which is a provider aggregator. See
|
405
|
+
# OEmbed::Providers::Noembed.urls for a full list of supported url schemas.
|
406
|
+
# https://noembed.com/#supported-sites
|
407
|
+
Noembed = OEmbed::Provider.new("https://noembed.com/embed")
|
408
|
+
# Add all known URL regexps for Noembed.
|
409
|
+
# To update this list run `rake oembed:update_noembed`
|
410
|
+
YAML.load_file(File.join(File.dirname(__FILE__), "/providers/aggregators/noembed_urls.yml")).each do |url|
|
411
|
+
Noembed << Regexp.new(url)
|
412
|
+
end
|
413
|
+
add_official_provider(Noembed, :aggregators)
|
414
|
+
|
381
415
|
# Provider for Embedly.com, which is a provider aggregator. See
|
382
416
|
# OEmbed::Providers::Embedly.urls for a full list of supported url schemas.
|
383
417
|
# http://embed.ly/docs/endpoints/1/oembed
|
@@ -388,7 +422,7 @@ module OEmbed
|
|
388
422
|
# If you don't yet have an API key you'll need to sign up here: http://embed.ly/pricing
|
389
423
|
Embedly = OEmbed::Provider.new("http://api.embed.ly/1/oembed")
|
390
424
|
# Add all known URL regexps for Embedly. To update this list run `rake oembed:update_embedly`
|
391
|
-
YAML.load_file(File.join(File.dirname(__FILE__), "/providers/embedly_urls.yml")).each do |url|
|
425
|
+
YAML.load_file(File.join(File.dirname(__FILE__), "/providers/aggregators/embedly_urls.yml")).each do |url|
|
392
426
|
Embedly << url
|
393
427
|
end
|
394
428
|
add_official_provider(Embedly, :aggregators)
|
@@ -1,5 +1,6 @@
|
|
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/*
|
@@ -8,7 +9,9 @@
|
|
8
9
|
- http://*.bubb.li/*
|
9
10
|
- http://*.buzzsprout.com/*
|
10
11
|
- http://*.cartodb.com/*/*
|
11
|
-
- http://*.
|
12
|
+
- http://*.cdn.vooplayer.com/*
|
13
|
+
- http://*.cincopa.com/watch/*
|
14
|
+
- http://*.cloud.panopto.eu/*
|
12
15
|
- http://*.crowdmap.com/map/*
|
13
16
|
- http://*.crowdmap.com/post/*
|
14
17
|
- http://*.dailymotion.com/*/video/*
|
@@ -22,6 +25,7 @@
|
|
22
25
|
- http://*.deviantart.com/gallery/*
|
23
26
|
- http://*.deviantart.net/*/*.gif
|
24
27
|
- http://*.deviantart.net/*/*.jpg
|
28
|
+
- http://*.embed\.fun/*
|
25
29
|
- http://*.force.com/presentation*
|
26
30
|
- http://*.hosted.panopto.com/*
|
27
31
|
- http://*.iplayerhd.com/player/video/*
|
@@ -29,25 +33,32 @@
|
|
29
33
|
- http://*.kaltura.com/*
|
30
34
|
- http://*.kastio.com/webcasts/*
|
31
35
|
- http://*.kinomap.com/*
|
32
|
-
- http://*.
|
33
|
-
- http://*.linkedin.com/in/*
|
34
|
-
- http://*.linkedin.com/pub/*
|
36
|
+
- http://*.libsyn.com/*
|
35
37
|
- http://*.looplogic.com/*
|
38
|
+
- http://*.paperform.co/*
|
36
39
|
- http://*.polarb.com/*
|
40
|
+
- http://*.razoo.com/*
|
37
41
|
- http://*.silk.co/explore/*
|
38
42
|
- http://*.slideshare.net/*/*
|
39
43
|
- http://*.smugmug.com/*
|
40
44
|
- http://*.smugmug.com/*#*
|
41
|
-
- http://*.
|
45
|
+
- http://*.sparemin.com/myrecording
|
46
|
+
- http://*.sparemin.com/recording-*
|
47
|
+
- http://*.staging.panopto.com/*
|
48
|
+
- http://*.tiktok.com/*
|
42
49
|
- http://*.tinypic.com/*.jpg
|
43
50
|
- http://*.tinypic.com/*.png
|
44
51
|
- http://*.tochka.net/*
|
45
52
|
- http://*.tumblr.com/post/*
|
53
|
+
- http://*.twentythree.net/*
|
54
|
+
- http://*.twitch.tv/*
|
46
55
|
- http://*.twitrpix.com/*
|
56
|
+
- http://*.typeform.com/*
|
47
57
|
- http://*.univision.com/*/video/*
|
48
58
|
- http://*.uservoice.com/*/suggestions/*
|
49
59
|
- http://*.vidcaster.com/*
|
50
|
-
- http://*.
|
60
|
+
- http://*.videomarketingplatform.co/*
|
61
|
+
- http://*.walkinto.in/*/*
|
51
62
|
- http://*.web.tv/*
|
52
63
|
- http://*.wi.st/*
|
53
64
|
- http://*.wikipedia.org/wiki/*
|
@@ -66,135 +77,90 @@
|
|
66
77
|
- http://*meetup.com/*
|
67
78
|
- http://*nfb.ca/film/*
|
68
79
|
- http://*revision3.com/*
|
69
|
-
- http://*twitch.tv/*
|
70
|
-
- http://*twitch.tv/*/b/*
|
71
80
|
- http://*viddler.com/v/*
|
72
81
|
- http://*vidyard.com/*
|
73
|
-
- http://*yfrog.*/*
|
74
82
|
- http://*youtube.com/watch*
|
83
|
+
- http://23degrees.io/*
|
75
84
|
- http://23hq.com/*/photo/*
|
76
85
|
- http://23video.com/*
|
77
86
|
- http://360.io/*
|
87
|
+
- http://360stories.com/*
|
88
|
+
- http://3d.cappasity.com/u/*
|
89
|
+
- http://3dcrafts.co.kr/*
|
90
|
+
- http://3dcrafts.net/*
|
78
91
|
- http://4cook.net/recipe/*
|
79
92
|
- http://4sq.com/*
|
80
93
|
- http://59saniye.com/*
|
94
|
+
- http://60db.co/story/*
|
95
|
+
- http://a.fsbl.io/*
|
81
96
|
- http://abcnews.com/*/video/*
|
82
|
-
- http://
|
83
|
-
- http://
|
84
|
-
- http://abcnews.go.com/video/playerIndex*
|
97
|
+
- http://acebot.ai/*
|
98
|
+
- http://acehiphop.com/*
|
85
99
|
- http://achewood.com/*
|
86
100
|
- http://achewood.com/index.php*
|
101
|
+
- http://adorilabs.com/*
|
102
|
+
- http://adpaths.com/*
|
87
103
|
- http://alkislarlayasiyorum.com/*
|
104
|
+
- http://allears.cc/*
|
88
105
|
- http://allihoopa.com/s/*
|
89
106
|
- http://alpha.vrchive.com/*
|
90
107
|
- 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/*
|
169
|
-
- http://amzn.com/*
|
170
108
|
- http://anchor.fm/*
|
171
109
|
- http://aniboom.com/animation-video/*
|
172
110
|
- http://animal.discovery.com/videos/*
|
173
111
|
- http://animoto.com/play/*
|
174
112
|
- http://answers.polldaddy.com/poll/*
|
113
|
+
- http://apester.com/*
|
114
|
+
- http://api.bangbang.do/*
|
175
115
|
- http://api.lovelive.tv/v1/*
|
176
116
|
- http://api.minoto-video.com/publishers/*/videos/*
|
177
|
-
- http://
|
117
|
+
- http://app.badpanda.gg/*
|
118
|
+
- http://app.queezly.com/*
|
178
119
|
- http://app.sliderocket.com/*
|
179
120
|
- http://app.stghv.com/*
|
180
121
|
- http://app.ustudio.com/embed/*/*
|
181
122
|
- http://app.videocheckout.com/embed/*
|
182
123
|
- http://app.wistia.com/embed/medias/*
|
124
|
+
- http://app.wizer.me/learn/*
|
125
|
+
- http://app.wizer.me/preview/*
|
126
|
+
- http://appfollow.io/*
|
183
127
|
- http://arcg.is/*
|
128
|
+
- http://archivos.digital/*
|
129
|
+
- http://are.na/*
|
130
|
+
- http://article.voxsnap.com/*
|
184
131
|
- http://askmen.com/video/*
|
185
132
|
- http://asofterworld.com/*.jpg
|
133
|
+
- http://athenascope.com/*
|
186
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/*
|
187
143
|
- http://bale.io/*
|
188
144
|
- http://bambuser.com/channel/*
|
189
145
|
- http://bambuser.com/channel/*/broadcast/*
|
190
146
|
- http://bambuser.com/v/*
|
147
|
+
- http://bangbang.do/*
|
191
148
|
- http://bcove.me/*
|
149
|
+
- http://bcove.video/*
|
150
|
+
- http://beautiful.ai/*
|
192
151
|
- http://behance.net/gallery/*
|
193
152
|
- http://beta-sliderocket.com/*
|
153
|
+
- http://beta.mapinmind.net/*
|
194
154
|
- http://beta.polstir.com/*/*
|
155
|
+
- http://bingewith.com/*
|
156
|
+
- http://bitofme.io/*
|
195
157
|
- http://blab.im/*
|
196
158
|
- http://blip.tv/*/*
|
159
|
+
- http://blogcast.host/*
|
160
|
+
- http://blogsend.io/*
|
161
|
+
- http://blueprintue.com/*
|
197
162
|
- http://boo.fm/b*
|
163
|
+
- http://bootkik.com/*
|
198
164
|
- http://bop.fm/s/*/*
|
199
165
|
- http://boston.com/*video*
|
200
166
|
- http://boston.com/video*
|
@@ -202,69 +168,136 @@
|
|
202
168
|
- http://brainshark.com/*/*
|
203
169
|
- http://brainsonic.com/*
|
204
170
|
- http://bravotv.com/*/*/videos/*
|
205
|
-
- http://break.com/*/*
|
206
171
|
- http://bubb.li/*
|
172
|
+
- http://buk.io/*
|
207
173
|
- http://bumpers.fm/e/*
|
174
|
+
- http://buncee.com/*
|
208
175
|
- http://bunkrapp.com/*/*
|
176
|
+
- http://buttondown.email/*
|
177
|
+
- http://buyte.co/embed*
|
209
178
|
- http://buzzsprout.com/*
|
179
|
+
- http://cadence13.com/*
|
210
180
|
- http://calameo.com/*
|
181
|
+
- http://calconic.com/*
|
182
|
+
- http://campaign.theheartstringsproject.com/*
|
211
183
|
- http://canalplus.fr/*
|
184
|
+
- http://captur3d.io/*
|
185
|
+
- http://carbon.now.sh/*
|
186
|
+
- http://cards.heeyy.com/*
|
187
|
+
- http://cayke.co/*
|
212
188
|
- http://cbsnews.com/video/watch/*
|
213
189
|
- http://cdn.knightlab.com/libs/juxtapose/*
|
214
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/*/*
|
215
196
|
- http://chirb.it/*
|
216
|
-
- http://
|
217
|
-
- http://
|
197
|
+
- http://cincopa.com/~*
|
198
|
+
- http://cinema8.com/*
|
199
|
+
- http://cinnamon.video/*
|
200
|
+
- http://clay.run/*
|
218
201
|
- http://clippituser.tv/*
|
219
202
|
- http://clipter.com/c/*
|
220
203
|
- http://clyp.it/*
|
204
|
+
- http://cms.megaphone.fm/*
|
221
205
|
- http://cnb.cx/*
|
222
206
|
- http://cnbc.com/id/*/play/1/video/*
|
223
207
|
- http://cnbc.com/id/*?*video*
|
224
208
|
- http://cnn.it/*
|
209
|
+
- http://codeembed.dev/*
|
210
|
+
- http://codegenerators.io/*
|
211
|
+
- http://codeocean.com/*
|
225
212
|
- http://codepen.io/*/pen/*
|
226
213
|
- http://codepen.io/*/pen/*
|
227
214
|
- http://codepicnic.com/bites/*
|
228
215
|
- http://codepicnic.com/consoles/*
|
229
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/*
|
230
223
|
- http://collegehumor.com/video/*
|
231
224
|
- http://collegehumor.com/video:*
|
225
|
+
- http://commaful.com/*
|
232
226
|
- http://confreaks.com/videos/*
|
233
227
|
- http://confreaks.net/videos/*
|
234
228
|
- http://content.newsbound.com/*/*
|
235
229
|
- http://content.streamonecloud.net/embed/*
|
230
|
+
- http://cooler.tv/*
|
236
231
|
- http://coub.com/embed/*
|
237
232
|
- http://coub.com/view/*
|
238
|
-
- http://crocodoc.com/*
|
239
233
|
- http://crowdmap.com/map/*
|
240
234
|
- http://crowdmap.com/post/*
|
235
|
+
- http://cube365.net/*
|
241
236
|
- http://d.pr/i/*
|
237
|
+
- http://danfoss.com/*
|
242
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/*
|
243
247
|
- http://distrify.com/film/*
|
248
|
+
- http://dlystr.io/*
|
244
249
|
- http://dnbradio.com/*
|
245
|
-
- http://
|
250
|
+
- http://docdroid.net/*
|
251
|
+
- http://doculet.net/*
|
246
252
|
- http://dotsub.com/view/*
|
247
253
|
- http://drbl.in/*
|
248
254
|
- http://dreambroker.com/channel/*
|
249
255
|
- http://dsc.discovery.com/videos/*
|
256
|
+
- http://dtsgr.com/*
|
250
257
|
- http://edition.cnn.com/video/*
|
251
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/*
|
252
264
|
- http://embed.imajize.com/*
|
265
|
+
- http://embed.kumu.io
|
266
|
+
- http://embed.kumu.io
|
267
|
+
- http://embed.medleytext.net/*
|
253
268
|
- http://embed.minoto-video.com/*
|
254
|
-
- http://
|
255
|
-
- http://
|
256
|
-
- http://
|
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/*
|
257
283
|
- http://fav.me/*
|
258
284
|
- http://fb.com
|
259
285
|
- http://fb.me/*
|
286
|
+
- http://firstory.me/*
|
260
287
|
- http://fiverr.com/*/*
|
261
288
|
- http://flat.io/score/*
|
289
|
+
- http://flexvid.io/*
|
262
290
|
- http://flic.kr/*
|
291
|
+
- http://flipnot.es/*
|
292
|
+
- http://flixel.com/*
|
293
|
+
- http://flourish.studio/*
|
263
294
|
- http://flowvella.com/s/*
|
295
|
+
- http://fontself.com/*
|
296
|
+
- http://footpathapp.com/*
|
264
297
|
- http://fora.tv/*/*/*/*
|
265
|
-
- http://
|
266
|
-
- http://
|
267
|
-
- http://
|
298
|
+
- http://forge.gg/*
|
299
|
+
- http://form.jotform.com/*
|
300
|
+
- http://formula-embedappspot.com/*
|
268
301
|
- http://fotopedia.com/*/*
|
269
302
|
- http://foursquare.com/*
|
270
303
|
- http://fr.peoplbrain.com/tutoriaux/*
|
@@ -274,219 +307,388 @@
|
|
274
307
|
- http://frontback.me/p/*
|
275
308
|
- http://funnyordie.com/m/*
|
276
309
|
- http://funnyordie.com/videos/*
|
310
|
+
- http://futurism.com/images/*
|
311
|
+
- http://fwdeveryone.com/t/*
|
277
312
|
- http://galeri.uludagsozluk.com/*
|
313
|
+
- http://gametakes.com/*
|
278
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/*
|
279
322
|
- http://gfycat.com/*
|
323
|
+
- http://gif-vif.com/*
|
280
324
|
- http://giflike.com/a/*
|
325
|
+
- http://gifyourgame.com/*
|
281
326
|
- http://giphy.com/gifs/*
|
282
327
|
- http://gist.github.com/*
|
328
|
+
- http://gitpitch.com/*/*
|
329
|
+
- http://glitch.com/*
|
330
|
+
- http://go.vooozer.com/*
|
331
|
+
- http://goabstract.com/*
|
283
332
|
- http://goanimate.com/videos/*
|
284
333
|
- http://godtube.com/featured/video/*
|
285
334
|
- http://godtube.com/watch/*
|
335
|
+
- http://goodworld.me/*
|
286
336
|
- http://google.*/maps/*
|
287
337
|
- http://google.com/profiles/*
|
338
|
+
- http://goplayalong.com/*
|
339
|
+
- http://gosynth.com/*
|
288
340
|
- http://gph.is/*
|
341
|
+
- http://grain.co/*
|
342
|
+
- http://graphcommons.com/graphs/*
|
343
|
+
- http://graphcommons.com/nodes/*
|
289
344
|
- http://graphiq.com/w/*
|
345
|
+
- http://greetor.com/*
|
346
|
+
- http://gridble.io/*
|
290
347
|
- http://grindtv.com/*/video/*
|
291
348
|
- http://grooveshark.com/*
|
292
|
-
- http://gty.im/*
|
293
349
|
- http://guardian.co.uk/*/video/*/*/*/*
|
350
|
+
- http://guilded.gg/*
|
351
|
+
- http://hapyak.com/embed/*
|
352
|
+
- http://hardbound.co/*/*/*
|
353
|
+
- http://hatchxr.com/*
|
294
354
|
- http://health.discovery.com/videos/*
|
355
|
+
- http://herth.co/*
|
356
|
+
- http://heytwist.com/*
|
357
|
+
- http://hopbucket.com/plan-details/*
|
295
358
|
- http://huffduffer.com/*/*
|
296
359
|
- http://hulu.com/w/*
|
297
360
|
- http://hulu.com/watch*
|
298
361
|
- http://hulu.tv/*
|
299
362
|
- http://hypem.com/premiere/*
|
300
|
-
- http://i*.photobucket.com/albums/*
|
301
363
|
- http://i.giflike.com/*
|
302
|
-
- http://identi.ca/notice/*
|
303
364
|
- http://ifood.tv/channel/user/*
|
304
365
|
- http://ifood.tv/recipe/*
|
305
366
|
- http://ifood.tv/video/*
|
306
367
|
- http://iframe.minoto-video.com/*
|
307
368
|
- http://ifttt.com/recipes/*
|
308
369
|
- http://ign.com/videos/*
|
370
|
+
- http://iheart.com/*
|
309
371
|
- http://img.ly/*
|
310
|
-
- http://img.skitch.com/*
|
311
372
|
- http://imgs.xkcd.com/*
|
373
|
+
- http://indshine.com/*
|
374
|
+
- http://infogr.am/*
|
375
|
+
- http://infogram.com/*
|
312
376
|
- http://infomous.com/node/*
|
377
|
+
- http://injurymap.com/*
|
313
378
|
- http://instagr.am/p/*
|
314
379
|
- http://instagram.com/p/*
|
380
|
+
- http://instaread.co/*
|
381
|
+
- http://intellogo.com/*
|
315
382
|
- http://investigation.discovery.com/videos/*
|
316
383
|
- http://isnare.com/*
|
317
384
|
- http://issuu.com/*/docs/*
|
318
385
|
- http://it.youtube.com/*
|
319
|
-
- http://
|
386
|
+
- http://itemsy.com/*
|
387
|
+
- http://itslit.com/*
|
320
388
|
- http://izlesene.com/video/*
|
321
389
|
- http://jdsupra.com/legalnews/*
|
322
390
|
- http://jibjab.com/view/*
|
391
|
+
- http://jovian.ml/*
|
323
392
|
- http://jsbin.com/*
|
324
393
|
- http://jsbin.com/*/*
|
394
|
+
- http://jscomplete.com/*
|
325
395
|
- http://jsfiddle.net/*
|
396
|
+
- http://jsitor.com/*
|
326
397
|
- http://kastio.com/webcasts/*
|
327
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/*
|
328
407
|
- http://link.brightcove.com/services/player/bcpid*
|
329
|
-
- http://linkedin.com/company/*
|
330
|
-
- http://linkedin.com/in/*
|
331
|
-
- http://linkedin.com/in/*
|
332
|
-
- http://linkedin.com/pub/*
|
333
408
|
- http://list.ly/list/*
|
409
|
+
- http://listennotes.com/*
|
410
|
+
- http://listle.io/*
|
334
411
|
- http://live.huffingtonpost.com/r/segment/*/*
|
335
412
|
- http://liveleak.com/view?*
|
336
|
-
- http://
|
413
|
+
- http://livestream.com/*
|
337
414
|
- http://logotv.com/video/*
|
338
415
|
- http://lonelyplanet.com/Clip.aspx?*
|
416
|
+
- http://ludus.one/*
|
339
417
|
- http://lustich.de/videos/*
|
340
418
|
- http://lynda.com/*
|
341
419
|
- http://m.youtube.com/index*
|
342
420
|
- http://m.youtube.com/watch*
|
343
421
|
- http://magisto.com/*
|
422
|
+
- http://makecode.com/*
|
423
|
+
- http://makecode.com/*
|
344
424
|
- http://maphubs.com/user/*/map/*
|
345
425
|
- http://maps.google.com/?*
|
346
426
|
- http://maps.google.com/maps/ms?*
|
347
427
|
- http://maps.google.com/maps?*
|
348
428
|
- http://meadd.com/*
|
349
429
|
- http://meadd.com/*/*
|
350
|
-
- http://
|
430
|
+
- http://medal.tv/*
|
431
|
+
- http://media.giphy.com/media/*
|
351
432
|
- http://mediamatters.org/mmtv/*
|
352
433
|
- http://medibang.com/sv/*
|
434
|
+
- http://meedle.io/*
|
353
435
|
- http://meetu.ps/*
|
436
|
+
- http://megaphone.fm/*
|
354
437
|
- http://megavisor.com/en/view/*
|
355
438
|
- http://megavisor.com/view/*
|
356
439
|
- http://military.discovery.com/videos/*
|
440
|
+
- http://millioneyez.com/*
|
357
441
|
- http://minilogs.com/*
|
442
|
+
- http://minko.io/s/
|
358
443
|
- http://mixergy.com/*
|
359
444
|
- http://mlkshk.com/p/*
|
360
445
|
- http://moby.to/*
|
446
|
+
- http://momento360.com/e/u/*
|
447
|
+
- http://momento360.com/e/uc/*
|
361
448
|
- http://money.cnn.com/video/*
|
362
449
|
- http://money.cnn.com/videos/*
|
450
|
+
- http://moveshelf.com/*
|
451
|
+
- http://mpembed.com/*
|
363
452
|
- http://mpora.com/videos/*
|
364
453
|
- http://msn.foxsports.com/video*
|
365
454
|
- http://msnbc.msn.com/*/watch/*
|
366
455
|
- http://multimedia.foxsports.com/m/video/*/*
|
456
|
+
- http://muralapp.io/*
|
367
457
|
- http://muvi.es/*
|
368
458
|
- http://muzu.tv/*
|
369
459
|
- http://my.opera.com/*/albums/show.dml?id=*
|
370
460
|
- http://my.opera.com/*/albums/showpic.dml?album=*&picture=*
|
461
|
+
- http://my.panomoments.com/*
|
371
462
|
- http://my.storygami.com/video/*
|
372
463
|
- http://my.webboards.fr/*
|
373
|
-
- http://
|
464
|
+
- http://mybeweeg.com/w/*
|
465
|
+
- http://mymixtapez.com/*
|
374
466
|
- http://mynet.com/video/*
|
467
|
+
- http://myvideoplace.tv/*
|
468
|
+
- http://namchey.com/*
|
469
|
+
- http://naturalatlas.com/*
|
375
470
|
- http://nbcnews.com/*
|
376
|
-
- http://
|
377
|
-
- http://
|
471
|
+
- http://neatclip.com/*
|
472
|
+
- http://nodalview.com/*
|
473
|
+
- http://npmcharts.com/*
|
474
|
+
- http://nr8.com/embed/*
|
475
|
+
- http://nuggetcharts.com/*
|
378
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/*
|
379
483
|
- http://on.aol.com/playlist/*
|
380
484
|
- http://on.aol.com/video/*
|
381
485
|
- http://on.bubb.li/*
|
382
486
|
- http://open.spotify.com/*
|
487
|
+
- http://openings.moe/*
|
488
|
+
- http://openprocessing.org/*
|
489
|
+
- http://orbitvu.com/001/*
|
383
490
|
- http://oumy.com/v/*
|
491
|
+
- http://overflow.io/*
|
384
492
|
- http://ow.ly/i/*
|
493
|
+
- http://parkfy.com/*
|
494
|
+
- http://pasteapp.com/*
|
385
495
|
- http://pastebin.com/*
|
386
496
|
- http://pastie.org/*
|
497
|
+
- http://patching.io/*
|
387
498
|
- http://photozou.jp/photo/photo_only/*/*
|
388
499
|
- http://photozou.jp/photo/show/*/*
|
389
|
-
- http://pics.lockerz.com/s/*
|
390
500
|
- http://pikchur.com/*
|
501
|
+
- http://pinecast.co/*
|
502
|
+
- http://pippa.io/*
|
503
|
+
- http://pixdor.com/*
|
391
504
|
- http://pixorial.com/watch/*
|
392
505
|
- http://planetgreen.discovery.com/videos/*
|
506
|
+
- http://play.buto.tv/*
|
507
|
+
- http://play.kotlinlang.org/embed#*http://pl.kotl.in/*
|
393
508
|
- http://play.minoto-video.com/*
|
509
|
+
- http://play.radiopublic.com/*
|
510
|
+
- http://play.soundsgood.co/*
|
394
511
|
- http://play.spotify.com/*
|
512
|
+
- http://player.entrypoint.live/*
|
513
|
+
- http://player.megaphone.fm/*
|
395
514
|
- http://player.videopath.com/*
|
396
515
|
- http://player.vimeo.com/*
|
397
|
-
- http://
|
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/*
|
398
522
|
- http://plus.google.com/*
|
399
523
|
- http://polarb.com/*
|
524
|
+
- http://polarishare.com/*
|
525
|
+
- http://polaroidswing.com/p/*
|
400
526
|
- http://polldaddy.com/community/poll/*
|
401
527
|
- http://polldaddy.com/poll/*
|
402
|
-
- http://
|
528
|
+
- http://pollforall.com/*
|
529
|
+
- http://pollsify.com/*
|
530
|
+
- http://pollstar.com/*
|
403
531
|
- http://polstir.com/*/*
|
404
532
|
- http://ponga.com/*
|
533
|
+
- http://popchest.com/*/
|
534
|
+
- http://portal.paratii.video/*
|
405
535
|
- http://portal.sliderocket.com/*
|
536
|
+
- http://posixion.com/*
|
537
|
+
- http://pressekompass.net/*
|
406
538
|
- http://prezi.com/*/*
|
539
|
+
- http://procfu.com/*
|
540
|
+
- http://producthunt.com/*
|
407
541
|
- http://public.chartblocks.com/c/*
|
408
542
|
- http://public.talely.com/*/*
|
543
|
+
- http://publicinput.com/*
|
544
|
+
- http://publish.viostream.com/play/*
|
545
|
+
- http://publit.io/*
|
409
546
|
- http://publons.com/author/*
|
547
|
+
- http://pulse.qa/*
|
548
|
+
- http://qanda.co/q/*
|
410
549
|
- http://qik.com/*
|
411
550
|
- http://qik.com/video/*
|
412
551
|
- http://qik.ly/*
|
552
|
+
- http://quantum-circuit.com/*
|
413
553
|
- http://questionablecontent.net/
|
414
554
|
- http://questionablecontent.net/comics/*.png
|
415
555
|
- http://questionablecontent.net/view.php*
|
556
|
+
- http://qumucloud.com/*
|
416
557
|
- http://quora.com/*/answer/*
|
417
558
|
- http://radd.it/comments/*
|
418
559
|
- http://radd.it/magic/*
|
419
560
|
- http://radd.it/playlists/*
|
420
561
|
- http://radd.it/r/*
|
421
562
|
- http://radd.it/user/*
|
563
|
+
- http://radiopublic.com/*
|
422
564
|
- http://radioreddit.com/?q=songs*
|
423
565
|
- http://radioreddit.com/songs*
|
424
566
|
- http://rapidengage.com/s/*
|
567
|
+
- http://rave.dj/*
|
568
|
+
- http://reading.fm/*
|
425
569
|
- http://redivis.com/r/*
|
426
570
|
- http://redux.com/f/*/*
|
427
571
|
- http://redux.com/stream/item/*/*
|
572
|
+
- http://registry.bitmark.com/*
|
573
|
+
- http://rekt.gg/*
|
428
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/*
|
429
580
|
- http://reuters.com/video/*
|
430
581
|
- http://rocketium.com/*
|
431
582
|
- http://rogertalk.com/*
|
432
|
-
- http://
|
583
|
+
- http://roshiclips.com/watch*
|
584
|
+
- http://rumble.com/*
|
585
|
+
- http://runelm.io/*/*
|
586
|
+
- http://runkit.com/*
|
433
587
|
- http://say.ly/*
|
588
|
+
- http://scalafiddle.io/*
|
589
|
+
- http://scapic.com/*
|
434
590
|
- http://science.discovery.com/videos/*
|
435
591
|
- http://sciencestage.com/a/*.html
|
436
592
|
- http://sciencestage.com/v/*.html
|
593
|
+
- http://scorebat.com/*
|
437
594
|
- http://screencast.com/*/media/*
|
438
595
|
- http://screencast.com/t/*
|
596
|
+
- http://screenhunters.com/*
|
439
597
|
- http://screenr.com/*
|
440
598
|
- http://scribblemaps.com/maps/view/*/*
|
441
599
|
- http://scribd.com/doc/*
|
442
600
|
- http://scribd.com/mobile/documents/*
|
601
|
+
- http://scrimba.com/*
|
602
|
+
- http://searchie.io/*
|
603
|
+
- http://secure.plays.tv/*/*
|
604
|
+
- http://seekbeak.com/v/*
|
443
605
|
- http://sendables.jibjab.com/originals/*
|
444
606
|
- http://sendables.jibjab.com/view/*
|
445
607
|
- http://sendvid.com/*
|
608
|
+
- http://serenader.io/*
|
446
609
|
- http://services.momindum.com/embedly/*
|
610
|
+
- http://sheetsu.com/tables/*
|
447
611
|
- http://shoplocket.com/products/*
|
448
612
|
- http://shorti.com/*
|
449
613
|
- http://showme.com/sh/*
|
450
|
-
- http://
|
614
|
+
- http://sidewire.com/*/*/*
|
615
|
+
- http://simmer.io/*/*
|
451
616
|
- http://skip.st/one/*
|
452
|
-
- http://skitch.com/*/*/*
|
453
617
|
- http://sliderocket.com/*
|
454
618
|
- http://slidesha.re/*
|
619
|
+
- http://slidetosubscribe.com/*
|
455
620
|
- http://slidr.io/*/*
|
456
|
-
- http://
|
621
|
+
- http://snack.expo.io/*
|
622
|
+
- http://snappd\.tv/*
|
457
623
|
- http://snd.sc/*
|
624
|
+
- http://snipaclip.com/*
|
625
|
+
- http://snipit.io/*
|
458
626
|
- http://snotr.com/video/*
|
459
627
|
- http://socialcam.com/v/*
|
628
|
+
- http://socialexplorer.com/*
|
460
629
|
- http://some.ly/*
|
461
630
|
- http://someecards.com/*/*
|
631
|
+
- http://song.link/*
|
462
632
|
- http://soundcloud.com/*
|
463
633
|
- http://soundcloud.com/*/*
|
464
634
|
- http://soundcloud.com/*/sets/*
|
465
635
|
- http://soundcloud.com/groups/*
|
636
|
+
- http://spaces.archilogic.com/model/*
|
466
637
|
- http://speakerdeck.com/*/*
|
638
|
+
- http://speakytext.com/*
|
639
|
+
- http://sphereplay.com/*
|
467
640
|
- http://spiegel.de/video/*
|
641
|
+
- http://spkt.io/*
|
468
642
|
- http://spoti.fi/*
|
643
|
+
- http://spott.tv/*
|
644
|
+
- http://spreaker.com/*
|
469
645
|
- http://spreecast.com/events/*
|
470
646
|
- http://sproutvideo.com/videos/*
|
647
|
+
- http://stackblitz.com/*
|
471
648
|
- http://stackshare.io/*
|
649
|
+
- http://stagevids.com/watch*
|
650
|
+
- http://stanza.co/*
|
472
651
|
- http://stepic.org/*
|
473
|
-
- http://
|
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/*
|
474
660
|
- http://streamable.com/*
|
475
661
|
- http://streamio.com/api/v1/*
|
662
|
+
- http://streamr.network/*
|
476
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/*
|
477
670
|
- http://tagmotion.com/tree/*
|
478
671
|
- http://talkshow.im/show/*
|
479
|
-
- http://
|
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/*
|
480
679
|
- http://thecolbertreport.cc.com/videos/*
|
481
680
|
- http://thedailyshow.cc.com/videos/*
|
482
681
|
- http://theguardian.com/*/video/*/*/*/*
|
483
682
|
- http://thelastgraph.com/lg.php?a=*
|
484
683
|
- http://theonion.com/video/*
|
684
|
+
- http://thesportsme.com/*
|
685
|
+
- http://thinglink.com/*
|
686
|
+
- http://threesixty.tours/*
|
485
687
|
- http://ticker.tv/v/*
|
688
|
+
- http://tiktok.com/*
|
486
689
|
- http://tinypic.com/player.php*
|
487
690
|
- http://tinypic.com/r/*/*
|
488
691
|
- http://tinypic.com/view.php*
|
489
|
-
- http://tl.gd/*
|
490
692
|
- http://tlc.discovery.com/videos/*
|
491
693
|
- http://tochka.net/*
|
492
694
|
- http://today.msnbc.msn.com/id/*/ns/*
|
@@ -496,17 +698,23 @@
|
|
496
698
|
- http://tumblr.com/*
|
497
699
|
- http://tun.in/*
|
498
700
|
- http://tunein.com/*
|
499
|
-
- http://
|
500
|
-
- http://twitlonger.com/show/*
|
501
|
-
- http://twitpic.com/*
|
502
|
-
- http://twitpic.com/photos/*
|
701
|
+
- http://twitch.tv/*
|
503
702
|
- http://twitrpix.com/*
|
703
|
+
- http://typecast.ai/*
|
704
|
+
- http://uilicious.com/*
|
504
705
|
- http://uploads.knightlab.com/storymapjs/*/index.html
|
706
|
+
- http://upscri.be/*
|
707
|
+
- http://usehappen.com/*
|
708
|
+
- http://useloom.com/share/*
|
505
709
|
- http://ustre.am/*
|
506
710
|
- http://v.embedly.com/*
|
507
711
|
- http://v.youku.com/v_playlist/*
|
508
712
|
- http://v.youku.com/v_show/*
|
713
|
+
- http://vectary.com/*
|
714
|
+
- http://vectorlogo.zone/*
|
509
715
|
- http://veoh.com/watch/*
|
716
|
+
- http://verasity.io/player*
|
717
|
+
- http://verse.com/stories/*
|
510
718
|
- http://vibi.com/videocard/*
|
511
719
|
- http://vice.com/*
|
512
720
|
- http://vid.me/*
|
@@ -516,7 +724,6 @@
|
|
516
724
|
- http://video.foxbusiness.com/v/*
|
517
725
|
- http://video.foxnews.com/v/*
|
518
726
|
- http://video.google.com/videoplay?*
|
519
|
-
- http://video.nytimes.com/video/*
|
520
727
|
- http://video.pbs.org/video/*
|
521
728
|
- http://video.uludagsozluk.com/*
|
522
729
|
- http://video214.com/play/*
|
@@ -524,31 +731,52 @@
|
|
524
731
|
- http://videodetective.com/*/*
|
525
732
|
- http://videodonor.com/video/*
|
526
733
|
- http://videos.nymag.com/*
|
734
|
+
- http://vidgrid.com/*
|
527
735
|
- http://vids.myspace.com/index.cfm?fuseaction=vids.individual&videoid*
|
736
|
+
- http://view.genial.ly/*
|
528
737
|
- http://view.stacker.cc/*
|
738
|
+
- http://viewer.archilogic.com/*
|
739
|
+
- http://vilynx.com/video/*
|
529
740
|
- http://vimeo.com/*
|
530
741
|
- http://vimeo.com/groups/*/videos/*
|
531
742
|
- http://vimeo.com/m/#/*
|
743
|
+
- http://vimsical.com/vims/*
|
532
744
|
- http://vine.co/v/*
|
533
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/*
|
534
751
|
- http://vol.at/video/*
|
752
|
+
- http://vr3d.vn/*
|
753
|
+
- http://vrbfoto.com/f/*
|
535
754
|
- http://vrchive.com/*
|
536
755
|
- http://vube.com/*/*
|
537
|
-
- http://
|
538
|
-
- http://vzaar.me/*
|
539
|
-
- http://vzaar.tv/*
|
756
|
+
- http://vysda.com/*
|
540
757
|
- http://w.graphiq.com/w/*
|
541
|
-
- http://
|
758
|
+
- http://walkinto.in/*/*
|
542
759
|
- http://weavly.com/watch/*
|
543
760
|
- http://web.tv/*
|
761
|
+
- http://webassembly.studio/*
|
762
|
+
- http://websitevoice.com/*
|
544
763
|
- http://wedgi.es/*
|
545
|
-
- http://
|
546
|
-
- http://
|
764
|
+
- http://wedonthavetime.org/*
|
765
|
+
- http://weekendsuperheroes.com/*
|
766
|
+
- http://whooshkaa.com/*
|
547
767
|
- http://wi.st/*
|
768
|
+
- http://widgetic.com/*
|
769
|
+
- http://widgets.feedbeaver.com/*
|
548
770
|
- http://wirewax.com/*
|
549
771
|
- http://wistia.com/*
|
772
|
+
- http://with.in/watch/*
|
773
|
+
- http://withkoji.com/*
|
774
|
+
- http://wonderbooth.com.my/*
|
550
775
|
- http://wordpress.tv/*/*/*/*/
|
551
776
|
- http://worldstarhiphop.com/videos/video*.php?v=*
|
777
|
+
- http://worthyt.io/*
|
778
|
+
- http://wribbn.com/*
|
779
|
+
- http://writeinstone.com/*
|
552
780
|
- http://www.23hq.com/*/photo/*
|
553
781
|
- http://www.59saniye.com/*
|
554
782
|
- http://www.achewood.com/*
|
@@ -556,85 +784,7 @@
|
|
556
784
|
- http://www.alkislarlayasiyorum.com/*
|
557
785
|
- http://www.allego.com/*
|
558
786
|
- http://www.alphahat.com/view/*
|
559
|
-
- http://www.
|
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/*
|
637
|
-
- http://www.amzn.com/*
|
787
|
+
- http://www.altizure.com/project/*
|
638
788
|
- http://www.aniboom.com/animation-video/*
|
639
789
|
- http://www.askmen.com/video/*
|
640
790
|
- http://www.asofterworld.com/*.jpg
|
@@ -647,10 +797,10 @@
|
|
647
797
|
- http://www.brainshark.com/*/*
|
648
798
|
- http://www.branchtrack.com/projects/*
|
649
799
|
- http://www.bravotv.com/*/*/videos/*
|
650
|
-
- http://www.break.com/*/*
|
651
800
|
- http://www.calameo.com/*
|
652
801
|
- http://www.canalplus.fr/*
|
653
802
|
- http://www.candybank.com/*
|
803
|
+
- http://www.changelog.com/*
|
654
804
|
- http://www.clikthrough.com/theater/video/*
|
655
805
|
- http://www.clipfish.de/*/*/video/*
|
656
806
|
- http://www.clippituser.tv/*
|
@@ -661,18 +811,18 @@
|
|
661
811
|
- http://www.cnn.com/videos/*
|
662
812
|
- http://www.cnn.com/videos/*
|
663
813
|
- http://www.codeply.com/view/*
|
814
|
+
- http://www.codiva.io/p/*
|
664
815
|
- http://www.colbertnation.com/full-episodes/*
|
665
816
|
- http://www.colbertnation.com/the-colbert-report-collections/*
|
666
817
|
- http://www.colbertnation.com/the-colbert-report-videos/*
|
667
818
|
- http://www.collegehumor.com/video/*
|
668
819
|
- http://www.collegehumor.com/video:*
|
669
|
-
- http://www.comedycentral.com/videos/index.jhtml?*
|
670
820
|
- http://www.confreaks.com/videos/*
|
671
821
|
- http://www.confreaks.net/videos/*
|
672
822
|
- http://www.dailymile.com/people/*/entries/*
|
823
|
+
- http://www.datasmoothie.com/*/*
|
673
824
|
- http://www.dnbradio.com/*
|
674
825
|
- http://www.dreambroker.com/channel/*
|
675
|
-
- http://www.etsy.com/*
|
676
826
|
- http://www.eyeem.com/a/*
|
677
827
|
- http://www.eyeem.com/p/*
|
678
828
|
- http://www.eyeem.com/u/*
|
@@ -681,19 +831,20 @@
|
|
681
831
|
- http://www.facebook.com/*/videos/*
|
682
832
|
- http://www.facebook.com/photo.php*
|
683
833
|
- http://www.facebook.com/video.php*
|
834
|
+
- http://www.figma.com/file/*
|
835
|
+
- http://www.figma.com/proto/*
|
684
836
|
- http://www.fiverr.com/*/*
|
685
837
|
- http://www.flickr.com/photos/*
|
686
|
-
- http://www.formspring.me/*
|
687
|
-
- http://www.formspring.me/*/q/*
|
688
|
-
- http://www.fotokritik.com/*/*
|
689
838
|
- http://www.fotopedia.com/*/*
|
690
839
|
- http://www.foursquare.com/*
|
691
840
|
- http://www.freemusicarchive.org/curator/*
|
692
841
|
- http://www.freemusicarchive.org/music/*
|
842
|
+
- http://www.frontback.me/p/*
|
693
843
|
- http://www.funnyordie.com/m/*
|
694
844
|
- http://www.funnyordie.com/videos/*
|
845
|
+
- http://www.fwdeveryone.com/t/*
|
695
846
|
- http://www.gametrailers.com/video*
|
696
|
-
- http://www.
|
847
|
+
- http://www.getsportsme.com/*
|
697
848
|
- http://www.giflike.com/a/*
|
698
849
|
- http://www.globalgiving.org/funds/*
|
699
850
|
- http://www.globalgiving.org/microprojects/*
|
@@ -705,9 +856,11 @@
|
|
705
856
|
- http://www.gogoyoko.com/song/*
|
706
857
|
- http://www.google.*/maps/*
|
707
858
|
- http://www.google.com/profiles/*
|
859
|
+
- http://www.gradba.se/v/*
|
708
860
|
- http://www.graphiq.com/w/*
|
709
861
|
- http://www.grindtv.com/*/video/*
|
710
862
|
- http://www.guardian.co.uk/*/video/*/*/*/*
|
863
|
+
- http://www.hapyak.com/embed/*
|
711
864
|
- http://www.hark.com/clips/*
|
712
865
|
- http://www.howcast.com/videos/*
|
713
866
|
- http://www.hulu.com/embed/*
|
@@ -719,6 +872,8 @@
|
|
719
872
|
- http://www.ifood.tv/recipe/*
|
720
873
|
- http://www.ifood.tv/video/*
|
721
874
|
- http://www.ign.com/videos/*
|
875
|
+
- http://www.initialview.com/player/linkedin*
|
876
|
+
- http://www.initialview.com/player/linkedin/*
|
722
877
|
- http://www.instagram.com/p/*
|
723
878
|
- http://www.isnare.com/*
|
724
879
|
- http://www.izlesene.com/video/
|
@@ -734,19 +889,15 @@
|
|
734
889
|
- http://www.last.fm/music/+images/*
|
735
890
|
- http://www.last.fm/music/+videos/*
|
736
891
|
- http://www.liveleak.com/view?*
|
737
|
-
- http://www.livestream.com/*
|
738
892
|
- http://www.logotv.com/video/*
|
739
893
|
- http://www.lonelyplanet.com/Clip.aspx?*
|
740
894
|
- http://www.lynda.com/*
|
741
895
|
- http://www.magisto.com/*
|
742
896
|
- http://www.maphubs.com/user/*/map/*
|
897
|
+
- http://www.maprosoft.com/app/map*
|
898
|
+
- http://www.maven.video/*
|
743
899
|
- http://www.medibang.com/sv/*
|
744
|
-
- http://www.
|
745
|
-
- http://www.meinvz.net/Gadgets/Info/*
|
746
|
-
- http://www.meinvz.net/Gadgets/Install/*
|
747
|
-
- http://www.meinvz.net/Groups/Overview/*
|
748
|
-
- http://www.meinvz.net/Profile/*
|
749
|
-
- http://www.meinvz.net/l/*
|
900
|
+
- http://www.megafono.io/*
|
750
901
|
- http://www.metacafe.com/w/*
|
751
902
|
- http://www.metacafe.com/watch/*
|
752
903
|
- http://www.metacdn.com/r/c/*/*
|
@@ -754,6 +905,7 @@
|
|
754
905
|
- http://www.minilogs.com/*
|
755
906
|
- http://www.mixcloud.com/*/*/
|
756
907
|
- http://www.mobypicture.com/user/*/view/*
|
908
|
+
- http://www.moviemogul.io/*
|
757
909
|
- http://www.mpora.com/videos/*
|
758
910
|
- http://www.msnbc.msn.com/*/watch/*
|
759
911
|
- http://www.msnbc.msn.com/id/*/ns/*
|
@@ -768,24 +920,25 @@
|
|
768
920
|
- http://www.npr.org/*/*/*/*/*/*
|
769
921
|
- http://www.npr.org/*/*/*/*/*/*/*
|
770
922
|
- http://www.npr.org/templates/story/story.php*
|
771
|
-
- http://www.nytimes.com/video/*/*
|
772
923
|
- http://www.nzonscreen.com/title/*
|
924
|
+
- http://www.oddshot.tv/*
|
773
925
|
- http://www.oumy.com/v/*
|
774
926
|
- http://www.overstream.net/view.php?oid=*
|
927
|
+
- http://www.pastery.net/*
|
775
928
|
- http://www.pastie.org/*
|
776
929
|
- http://www.pixorial.com/watch/*
|
777
930
|
- http://www.polleverywhere.com/free_text_polls/*
|
778
931
|
- http://www.polleverywhere.com/multiple_choice_polls/*
|
779
932
|
- http://www.polleverywhere.com/polls/*
|
933
|
+
- http://www.popchest.com/*/
|
780
934
|
- http://www.publons.com/author/*
|
781
|
-
- http://www.quantcast.com/*
|
782
|
-
- http://www.quantcast.com/wd:*
|
783
935
|
- http://www.questionablecontent.net/
|
784
936
|
- http://www.questionablecontent.net/comics/*.png
|
785
937
|
- http://www.questionablecontent.net/view.php*
|
786
938
|
- http://www.quora.com/*/answer/*
|
787
939
|
- http://www.qwantz.com/index.php?comic=*
|
788
|
-
- http://www.
|
940
|
+
- http://www.qzzr.com/quiz/*
|
941
|
+
- http://www.radiopublic.com/*
|
789
942
|
- http://www.radioreddit.com/?q=songs*
|
790
943
|
- http://www.radioreddit.com/songs*
|
791
944
|
- http://www.rdio.com/#/artist/*/album/*
|
@@ -793,19 +946,15 @@
|
|
793
946
|
- http://www.redivis.com/r/*
|
794
947
|
- http://www.redux.com/f/*/*
|
795
948
|
- http://www.redux.com/stream/item/*/*
|
949
|
+
- http://www.rekt.gg/*
|
796
950
|
- http://www.relayto.com/*
|
951
|
+
- http://www.relive.cc/view/*
|
797
952
|
- http://www.reuters.com/video/*
|
798
953
|
- http://www.rogertalk.com/*
|
799
954
|
- http://www.rts.ch/play/tv/*
|
800
955
|
- http://www.saynow.com/playMsg.html*
|
801
956
|
- http://www.saynow.com/playMsg.html*
|
802
957
|
- http://www.schooltube.com/video/*/*
|
803
|
-
- http://www.schuelervz.net/*
|
804
|
-
- http://www.schuelervz.net/Gadgets/Info/*
|
805
|
-
- http://www.schuelervz.net/Gadgets/Install/*
|
806
|
-
- http://www.schuelervz.net/Groups/Overview/*
|
807
|
-
- http://www.schuelervz.net/Profile/*
|
808
|
-
- http://www.schuelervz.net/l/*
|
809
958
|
- http://www.sciencestage.com/a/*.html
|
810
959
|
- http://www.sciencestage.com/v/*.html
|
811
960
|
- http://www.scrapblog.com/viewer/viewer.aspx*
|
@@ -814,17 +963,16 @@
|
|
814
963
|
- http://www.scribblemaps.com/maps/view/*/*
|
815
964
|
- http://www.scribd.com/doc/*
|
816
965
|
- http://www.scribd.com/mobile/documents/*
|
817
|
-
- http://www.shopstyle.com/action/apiVisitRetailer*
|
818
|
-
- http://www.shopstyle.com/action/viewLook*
|
819
|
-
- http://www.shopstyle.com/browse*
|
820
966
|
- http://www.shorti.com/*
|
821
967
|
- http://www.showme.com/sh/*
|
968
|
+
- http://www.simplecast.com/s/*
|
822
969
|
- http://www.sliderocket.com/*
|
823
970
|
- http://www.slideshare.net/*/*
|
824
971
|
- http://www.slideshare.net/mobile/*/*
|
825
|
-
- http://www.snappytv.com/*
|
826
972
|
- http://www.snotr.com/video/*
|
827
973
|
- http://www.socialcam.com/v/*
|
974
|
+
- http://www.sociale.co/question/*
|
975
|
+
- http://www.socialexplorer.com/*
|
828
976
|
- http://www.some.ly/*
|
829
977
|
- http://www.someecards.com/*/*
|
830
978
|
- http://www.spiegel.de/video/*
|
@@ -834,20 +982,14 @@
|
|
834
982
|
- http://www.stackshare.io/*
|
835
983
|
- http://www.streamio.com/api/v1/*
|
836
984
|
- http://www.streetfire.net/video/*.htm*
|
837
|
-
- http://www.
|
838
|
-
- http://www.studivz.net/Gadgets/Info/*
|
839
|
-
- http://www.studivz.net/Gadgets/Install/*
|
840
|
-
- http://www.studivz.net/Groups/Overview/*
|
841
|
-
- http://www.studivz.net/Profile/*
|
842
|
-
- http://www.studivz.net/l/*
|
985
|
+
- http://www.sudomemo.net/*
|
843
986
|
- http://www.tagmotion.com/tree/*
|
844
987
|
- http://www.talkshow.im/show/*
|
845
988
|
- http://www.ted.com/index.php/talks/*.html*
|
846
989
|
- http://www.ted.com/index.php/talks/lang/*/*.html*
|
847
|
-
- http://www.ted.com/talks
|
990
|
+
- http://www.ted.com/talks/*
|
848
991
|
- http://www.ted.com/talks/*.html*
|
849
992
|
- http://www.ted.com/talks/lang/*/*.html*
|
850
|
-
- http://www.telly.com/*
|
851
993
|
- http://www.thedailyshow.com/collection/*/*/*
|
852
994
|
- http://www.thedailyshow.com/full-episodes/*
|
853
995
|
- http://www.thedailyshow.com/watch/*
|
@@ -867,9 +1009,6 @@
|
|
867
1009
|
- http://www.trailerspy.com/view_video.php*
|
868
1010
|
- http://www.trutv.com/video/*
|
869
1011
|
- http://www.tudou.com/programs/view/*
|
870
|
-
- http://www.twitlonger.com/show/*
|
871
|
-
- http://www.twitpic.com/*
|
872
|
-
- http://www.twitpic.com/photos/*
|
873
1012
|
- http://www.ustream.tv/*
|
874
1013
|
- http://www.ustream.tv/channel/*
|
875
1014
|
- http://www.ustream.tv/recorded/*
|
@@ -887,12 +1026,7 @@
|
|
887
1026
|
- http://www.vol.at/video/*
|
888
1027
|
- http://www.vtility.net/virtualtour/*
|
889
1028
|
- http://www.vube.com/*/*
|
890
|
-
- http://www.vzaar.com/videos/*
|
891
|
-
- http://www.vzaar.tv/*
|
892
|
-
- http://www.washingtonpost.com/wp-dyn/*/video/*/*/*/*
|
893
1029
|
- http://www.weavly.com/watch/*
|
894
|
-
- http://www.whitehouse.gov/photos-and-video/video/*
|
895
|
-
- http://www.whitehouse.gov/video/*
|
896
1030
|
- http://www.whosay.com/*/content/*
|
897
1031
|
- http://www.whosay.com/*/photos/*
|
898
1032
|
- http://www.whosay.com/*/videos/*
|
@@ -903,6 +1037,7 @@
|
|
903
1037
|
- http://www.xiami.com/song/*
|
904
1038
|
- http://www.xkcd.com/*
|
905
1039
|
- http://www.xtranormal.com/watch/*
|
1040
|
+
- http://www.yelp.com/*&hrid=.+
|
906
1041
|
- http://www.youtube.com/attribution_link*
|
907
1042
|
- http://www.youtube.com/embed/*
|
908
1043
|
- http://www.youtube.com/gif*
|
@@ -913,6 +1048,7 @@
|
|
913
1048
|
- http://www.zie.nl/video/*
|
914
1049
|
- http://xiami.com/song/*
|
915
1050
|
- http://xkcd.com/*
|
1051
|
+
- http://xtracomedy.com/*
|
916
1052
|
- http://yahoo.com/movies/*
|
917
1053
|
- http://youtu.be/*
|
918
1054
|
- http://youtube.ca/*
|
@@ -928,225 +1064,737 @@
|
|
928
1064
|
- http://youtube.pl/*
|
929
1065
|
- http://zeit.de/video/*
|
930
1066
|
- http://zie.nl/video/*
|
1067
|
+
- http://ziggeo.io/*
|
1068
|
+
- http://zoomable.ca/*
|
931
1069
|
- https://*.23video.com/*
|
932
1070
|
- https://*.accredible.com/*
|
1071
|
+
- https://*.alpacamaps.com/*
|
1072
|
+
- https://*.bandcamp.com/
|
1073
|
+
- https://*.bandcamp.com/album/*
|
1074
|
+
- https://*.bandcamp.com/track/*
|
933
1075
|
- https://*.brainsonic.com/*
|
934
1076
|
- https://*.buzzsprout.com/*
|
935
1077
|
- https://*.cartodb.com/*/*
|
936
|
-
- https://*.
|
1078
|
+
- https://*.cdn.vooplayer.com/*
|
1079
|
+
- https://*.cincopa.com/watch/*
|
1080
|
+
- https://*.cloud.panopto.eu/*
|
1081
|
+
- https://*.embed\.fun/*
|
937
1082
|
- https://*.force.com/presentation*
|
938
1083
|
- https://*.hosted.panopto.com/*
|
939
1084
|
- https://*.iplayerhd.com/player/video/*
|
940
1085
|
- https://*.iplayerhd.com/playerframe/*
|
941
1086
|
- https://*.kaltura.com/*
|
1087
|
+
- https://*.libsyn.com/*
|
942
1088
|
- https://*.looplogic.com/*
|
1089
|
+
- https://*.paperform.co/*
|
1090
|
+
- https://*.razoo.com/*
|
943
1091
|
- https://*.silk.co/explore/*
|
1092
|
+
- https://*.slideshare.net/*/*
|
1093
|
+
- https://*.sparemin.com/myrecording
|
1094
|
+
- https://*.sparemin.com/recording-*
|
1095
|
+
- https://*.staging.panopto.com/*
|
944
1096
|
- https://*.stream.co.jp/apiservice/*
|
945
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/*/*
|
946
1107
|
- https://*.wi.st/*
|
1108
|
+
- https://*.wikipedia.org/wiki/*
|
947
1109
|
- https://*.wistia.com/*
|
948
1110
|
- https://*.yahoo.com/movies/*
|
949
1111
|
- https://*.youtube.com/playlist*
|
950
1112
|
- https://*.youtube.com/v/*
|
1113
|
+
- https://*imgur.com/*
|
1114
|
+
- https://*meetup.com/*
|
951
1115
|
- https://*vidyard.com/*
|
952
1116
|
- https://*youtube.com/watch*
|
1117
|
+
- https://23degrees.io/*
|
953
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*
|
954
1132
|
- https://accredible.com/*
|
1133
|
+
- https://acebot.ai/*
|
1134
|
+
- https://acehiphop.com/*
|
1135
|
+
- https://adorilabs.com/*
|
1136
|
+
- https://adpaths.com/*
|
955
1137
|
- https://airtable.com/shr*
|
1138
|
+
- https://allears.cc/*
|
956
1139
|
- https://allihoopa.com/s/*
|
957
1140
|
- https://alpha.vrchive.com/*
|
1141
|
+
- https://alugha.com/videos/*
|
958
1142
|
- https://anchor.fm/*
|
959
1143
|
- https://animoto.com/play/*
|
1144
|
+
- https://apester.com/*
|
1145
|
+
- https://api.bangbang.do/*
|
960
1146
|
- https://api.lovelive.tv/v1/*
|
1147
|
+
- https://api.peptone.io/v1/visualize/*
|
1148
|
+
- https://app.badpanda.gg/*
|
961
1149
|
- https://app.devhv.com/oembed/*
|
962
1150
|
- https://app.ilosvideos.com/view/*
|
1151
|
+
- https://app.queezly.com/*
|
963
1152
|
- https://app.stghv.com/*
|
1153
|
+
- https://app.swurveys.com/api/swurveys/*/opengraph
|
1154
|
+
- https://app.very.gd/p/*
|
964
1155
|
- https://app.videocheckout.com/embed/*
|
965
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/*
|
966
1180
|
- https://blab.im/*
|
1181
|
+
- https://blogcast.host/*
|
1182
|
+
- https://blogsend.io/*
|
1183
|
+
- https://blueprintue.com/*
|
1184
|
+
- https://bootkik.com/*
|
967
1185
|
- https://bop.fm/a/*
|
968
1186
|
- https://bop.fm/p/*
|
969
1187
|
- https://bop.fm/s/*/*
|
1188
|
+
- https://boston.com/*video*
|
1189
|
+
- https://boston.com/video*
|
970
1190
|
- https://braid.io/embed-tile/*
|
971
1191
|
- https://brainshark.com/*/*
|
972
1192
|
- https://brainsonic.com/*
|
1193
|
+
- https://buk.io/*
|
973
1194
|
- https://bumpers.fm/e/*
|
1195
|
+
- https://buncee.com/*
|
974
1196
|
- https://bunkrapp.com/*/*
|
1197
|
+
- https://buttondown.email/*
|
1198
|
+
- https://buyte.co/embed*
|
975
1199
|
- https://buzzsprout.com/*
|
1200
|
+
- https://cadence13.com/*
|
976
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/*
|
977
1209
|
- https://cdn.knightlab.com/libs/juxtapose/*
|
978
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/*/*
|
979
1216
|
- https://chirb.it/*
|
980
|
-
- https://
|
981
|
-
- https://
|
1217
|
+
- https://cincopa.com/~*
|
1218
|
+
- https://cinema8.com/*
|
1219
|
+
- https://cinnamon.video/*
|
1220
|
+
- https://cl.ly.com/*
|
1221
|
+
- https://clay.run/*
|
982
1222
|
- https://clippituser.tv/*
|
983
1223
|
- https://clipter.com/c/*
|
984
1224
|
- https://cloudup.com/*
|
985
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/*
|
986
1234
|
- https://codepicnic.com/bites/*
|
987
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/*
|
988
1241
|
- https://content.newsbound.com/*/*
|
989
1242
|
- https://content.streamonecloud.net/embed/*
|
1243
|
+
- https://cooler.tv/*
|
990
1244
|
- https://coub.com/embed/*
|
991
1245
|
- https://coub.com/view/*
|
992
|
-
- https://
|
993
|
-
- https://
|
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/*
|
994
1260
|
- https://dreambroker.com/channel/*
|
995
|
-
- https://
|
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/*
|
996
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/*
|
997
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/*
|
998
1299
|
- https://foursquare.com/*
|
999
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/*
|
1000
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/*
|
1001
1314
|
- https://gfycat.com/*
|
1315
|
+
- https://gif-vif.com/*
|
1002
1316
|
- https://gifs.com/*
|
1003
1317
|
- https://gifs.com/gif/*
|
1318
|
+
- https://gifyourgame.com/*
|
1319
|
+
- https://giphy.com/gifs/*
|
1004
1320
|
- https://gist.github.com/*
|
1321
|
+
- https://gitpitch.com/*/*
|
1322
|
+
- https://glitch.com/*
|
1005
1323
|
- https://glitter.club/*
|
1324
|
+
- https://go.vooozer.com/*
|
1325
|
+
- https://goabstract.com/*
|
1326
|
+
- https://goodworld.me/*
|
1006
1327
|
- https://google.*/maps/*
|
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/*
|
1007
1334
|
- https://graphiq.com/w/*
|
1008
|
-
- https://
|
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/*
|
1009
1347
|
- https://ifttt.com/recipes/*
|
1348
|
+
- https://iheart.com/*
|
1010
1349
|
- https://iloopit.net/*/*
|
1011
|
-
- https://
|
1012
|
-
- https://
|
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/*
|
1013
1358
|
- https://issuu.com/*/docs/*
|
1014
1359
|
- https://it.youtube.com/*
|
1015
|
-
- https://
|
1360
|
+
- https://itemsy.com/*
|
1361
|
+
- https://itslit.com/*
|
1362
|
+
- https://jovian.ml/*
|
1363
|
+
- https://jscomplete.com/*
|
1364
|
+
- https://jsitor.com/*
|
1016
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/*
|
1017
1379
|
- https://lynda.com/*
|
1018
1380
|
- https://lynda.com/*
|
1019
1381
|
- https://magisto.com/*
|
1382
|
+
- https://makecode.com/*
|
1383
|
+
- https://makecode.com/*
|
1020
1384
|
- https://maphubs.com/user/*/map/*
|
1021
1385
|
- https://maps.google.com/?*
|
1022
1386
|
- https://maps.google.com/maps/ms?*
|
1023
1387
|
- https://maps.google.com/maps?*
|
1388
|
+
- https://maps.mysidewalk.com/*
|
1024
1389
|
- https://marvelapp.com/*
|
1390
|
+
- https://medal.tv/*
|
1391
|
+
- https://media.giphy.com/media/*
|
1025
1392
|
- https://medibang.com/sv/*
|
1026
|
-
- https://
|
1027
|
-
- https://
|
1393
|
+
- https://meedle.io/*
|
1394
|
+
- https://meetu.ps/*
|
1395
|
+
- https://megaphone.fm/*
|
1028
1396
|
- https://megavisor.com/en/view/*
|
1029
1397
|
- https://megavisor.com/view/*
|
1398
|
+
- https://millioneyez.com/*
|
1399
|
+
- https://minko.io/s/
|
1030
1400
|
- https://mix.office.com/MyMixes/Details/*
|
1031
1401
|
- https://mix.office.com/embed/*
|
1032
1402
|
- https://mix.office.com/mix/*
|
1033
1403
|
- https://mix.office.com/watch/*
|
1034
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/*
|
1035
1417
|
- https://my.storygami.com/video/*
|
1036
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/*
|
1037
1426
|
- https://newhive.com/*/*
|
1038
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/*
|
1039
1439
|
- https://open.spotify.com/*
|
1440
|
+
- https://openings.moe/*
|
1441
|
+
- https://openprocessing.org/*
|
1442
|
+
- https://orbitvu.com/001/*
|
1040
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/*
|
1041
1453
|
- https://platform.vixyvideo.com/*
|
1042
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/*
|
1043
1459
|
- https://play.spotify.com/*
|
1460
|
+
- https://player.entrypoint.live/*
|
1461
|
+
- https://player.megaphone.fm/*
|
1044
1462
|
- https://player.videopath.com/*
|
1045
1463
|
- https://player.vimeo.com/*
|
1046
|
-
- https://
|
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/*
|
1047
1470
|
- https://plus.google.com/*
|
1048
|
-
- https://
|
1049
|
-
- https://
|
1050
|
-
- https://
|
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/*
|
1051
1484
|
- https://public.chartblocks.com/c/*
|
1052
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/*
|
1053
1491
|
- https://publons.com/author/*
|
1492
|
+
- https://pulse.qa/*
|
1493
|
+
- https://qanda.co/q/*
|
1494
|
+
- https://quantum-circuit.com/*
|
1495
|
+
- https://qumucloud.com/*
|
1054
1496
|
- https://quora.com/*/answer/*
|
1497
|
+
- https://qwip.in/watch/*
|
1055
1498
|
- https://qwip.it/watch/*
|
1499
|
+
- https://radiopublic.com/*
|
1056
1500
|
- https://rapidengage.com/s/*
|
1501
|
+
- https://rave.dj/*
|
1502
|
+
- https://reading.fm/*
|
1057
1503
|
- https://readtapestry.com/s/*/
|
1058
1504
|
- https://redivis.com/r/*
|
1059
1505
|
- https://reelhouse.org/*
|
1506
|
+
- https://registry.bitmark.com/*
|
1507
|
+
- https://rekt.gg/*
|
1060
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/*
|
1061
1516
|
- https://rocketium.com/*
|
1062
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/*
|
1063
1525
|
- https://screen.yahoo.com/*/*
|
1526
|
+
- https://screenhunters.com/*
|
1064
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/*
|
1065
1535
|
- https://sendvid.com/*
|
1536
|
+
- https://serenader.io/*
|
1066
1537
|
- https://services.momindum.com/embedly/*
|
1067
1538
|
- https://sfx.io/*
|
1539
|
+
- https://sheetsu.com/tables/*
|
1540
|
+
- https://sidewire.com/*/*/*
|
1541
|
+
- https://simmer.io/*/*
|
1068
1542
|
- https://sketchfab.com/models/*
|
1069
1543
|
- https://sketchfab.com/show/*
|
1070
1544
|
- https://skip.st/one/*
|
1071
|
-
- https://
|
1545
|
+
- https://sleeperbot.com/share/*
|
1546
|
+
- https://slidesha.re/*
|
1547
|
+
- https://slidetosubscribe.com/*
|
1072
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/*
|
1073
1555
|
- https://soundcloud.com/*
|
1074
1556
|
- https://soundcloud.com/*/*
|
1075
1557
|
- https://soundcloud.com/*/sets/*
|
1076
1558
|
- https://soundcloud.com/groups/*
|
1559
|
+
- https://spaces.archilogic.com/3d/*
|
1560
|
+
- https://spaces.archilogic.com/model/*
|
1077
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/*
|
1078
1572
|
- https://stepic.org/*
|
1079
|
-
- https://
|
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/*
|
1080
1581
|
- https://streamable.com/*
|
1081
1582
|
- https://streamio.com/api/v1/*
|
1082
|
-
- https://
|
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/*
|
1083
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/*
|
1084
1607
|
- https://tr.instela.com/*
|
1608
|
+
- https://tumblr.com/*
|
1085
1609
|
- https://tun.in/*
|
1086
1610
|
- https://tunein.com/*
|
1611
|
+
- https://twitch.tv/*
|
1612
|
+
- https://typecast.ai/*
|
1613
|
+
- https://uilicious.com/*
|
1087
1614
|
- https://uploadly.com/*
|
1615
|
+
- https://upscri.be/*
|
1088
1616
|
- https://urtak.com/clr/*
|
1089
1617
|
- https://urtak.com/u/*
|
1618
|
+
- https://usehappen.com/*
|
1619
|
+
- https://useloom.com/share/*
|
1090
1620
|
- https://v.embedly.com/*
|
1621
|
+
- https://vectary.com/*
|
1622
|
+
- https://vectorlogo.zone/*
|
1623
|
+
- https://verasity.io/player*
|
1624
|
+
- https://verse.com/stories/*
|
1091
1625
|
- https://vid.me/*
|
1092
1626
|
- https://vidd.me/*
|
1093
1627
|
- https://video.esri.com/*
|
1628
|
+
- https://video.forbes.com/fvn/*
|
1629
|
+
- https://video.foxbusiness.com/v/*
|
1630
|
+
- https://video.foxnews.com/v/*
|
1094
1631
|
- https://video214.com/play/*
|
1632
|
+
- https://vidgrid.com/*
|
1633
|
+
- https://vidl.it/*
|
1634
|
+
- https://view.genial.ly/*
|
1095
1635
|
- https://view.stacker.cc/*
|
1636
|
+
- https://viewer.archilogic.com/*http://spaces.archilogic.com/3d/*
|
1637
|
+
- https://vilynx.com/video/*
|
1096
1638
|
- https://vimeo.com/*
|
1639
|
+
- https://vimsical.com/vims/*
|
1097
1640
|
- https://vine.co/v/*
|
1098
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/*
|
1099
1648
|
- https://vrchive.com/*
|
1649
|
+
- https://vysda.com/*
|
1100
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/*
|
1101
1657
|
- https://wi.st/*
|
1658
|
+
- https://widgetic.com/*
|
1659
|
+
- https://widgets.feedbeaver.com/*
|
1102
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/*
|
1103
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*
|
1104
1673
|
- https://www.braid.io/embed-tile/*
|
1105
1674
|
- https://www.brainshark.com/*/*
|
1106
1675
|
- https://www.branchtrack.com/projects/*
|
1107
1676
|
- https://www.calameo.com/*
|
1677
|
+
- https://www.canva.com/design/*
|
1678
|
+
- https://www.changelog.com/*
|
1108
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/*
|
1109
1688
|
- https://www.dreambroker.com/channel/*
|
1110
|
-
- https://www.
|
1689
|
+
- https://www.exif.co/*/i/*
|
1111
1690
|
- https://www.facebook.com/*/photos/*
|
1112
1691
|
- https://www.facebook.com/*/posts/*
|
1113
1692
|
- https://www.facebook.com/*/videos/*
|
1693
|
+
- https://www.facebook.com/events/*
|
1114
1694
|
- https://www.facebook.com/photo.php*
|
1115
1695
|
- https://www.facebook.com/video.php*
|
1696
|
+
- https://www.figma.com/file/*
|
1697
|
+
- https://www.figma.com/proto/*
|
1116
1698
|
- https://www.flat.io/score/*
|
1699
|
+
- https://www.flickr.com/photos/*
|
1117
1700
|
- https://www.foursquare.com/*
|
1701
|
+
- https://www.frontback.me/p/*
|
1702
|
+
- https://www.fwdeveryone.com/t/*
|
1118
1703
|
- https://www.ganxy.com/*
|
1704
|
+
- https://www.getsportsme.com/*
|
1119
1705
|
- https://www.gifs.com/*
|
1120
1706
|
- https://www.gifs.com/gif/*
|
1121
1707
|
- https://www.globalgiving.org/funds/*
|
1122
1708
|
- https://www.globalgiving.org/microprojects/*
|
1123
1709
|
- https://www.globalgiving.org/projects/*
|
1124
1710
|
- https://www.google.*/maps/*
|
1711
|
+
- https://www.gradba.se/v/*
|
1125
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/*
|
1126
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/*
|
1127
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/*
|
1128
1728
|
- https://www.magisto.com/*
|
1129
1729
|
- https://www.maphubs.com/user/*/map/*
|
1730
|
+
- https://www.maprosoft.com/app/map*
|
1731
|
+
- https://www.maven.video/*
|
1130
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/*
|
1131
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/*
|
1132
1745
|
- https://www.oumy.com/v/*
|
1746
|
+
- https://www.pastery.net/*
|
1747
|
+
- https://www.pexels.com/photo/*
|
1748
|
+
- https://www.popchest.com/*/
|
1133
1749
|
- https://www.publons.com/author/*
|
1134
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/*
|
1135
1755
|
- https://www.redivis.com/r/*
|
1136
1756
|
- https://www.reelhouse.org/*
|
1757
|
+
- https://www.rekt.gg/*
|
1137
1758
|
- https://www.relayto.com/*
|
1759
|
+
- https://www.relive.cc/view/*
|
1760
|
+
- https://www.reuters.com/video/*
|
1138
1761
|
- https://www.rogertalk.com/*
|
1139
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/*
|
1140
1772
|
- https://www.streamio.com/api/v1/*
|
1773
|
+
- https://www.sudomemo.net/*
|
1141
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/*
|
1142
1785
|
- https://www.vibby.com/watch*
|
1143
1786
|
- https://www.vimeo.com/*
|
1144
1787
|
- https://www.vine.co/v/*
|
1145
1788
|
- https://www.vizamp.com/player/*
|
1146
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=.+
|
1147
1793
|
- https://www.youtube.com/attribution_link*
|
1148
1794
|
- https://www.youtube.com/embed/*
|
1149
1795
|
- https://www.youtube.com/gif*
|
1796
|
+
- https://www.zeit.de/video/*
|
1797
|
+
- https://xtracomedy.com/*
|
1150
1798
|
- https://yahoo.com/movies/*
|
1151
1799
|
- https://youtu.be/*
|
1152
1800
|
- https://youtube.ca/*
|
@@ -1160,3 +1808,8 @@
|
|
1160
1808
|
- https://youtube.jp/*
|
1161
1809
|
- https://youtube.nl/*
|
1162
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/*
|