ruby-oembed 0.12.0 → 0.13.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 +2 -5
- data/CHANGELOG.rdoc +8 -1
- data/Gemfile +10 -10
- data/README.md +2 -2
- data/Rakefile +2 -0
- data/lib/oembed/providers/embedly_urls.yml +638 -244
- data/lib/oembed/providers/noembed_urls.yml +109 -5
- data/lib/oembed/version.rb +1 -1
- data/ruby-oembed.gemspec +2 -29
- 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/spec_helper.rb +3 -1
- data/spec/spec_helper_examples.yml +6 -16
- metadata +5 -76
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 918432f1026a4f88f4f93fac6d175f1a29ed56398cb700927dfabad5ac923646
|
4
|
+
data.tar.gz: b1edfb2b6d16b80a21de7c291174ee9a37741fc474a67bcb9de9ae575087517a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb128d0642535122b2773fe5c923776a7998f251112c5f3669196e714a54fe17dd763f45c03c0e58ab080c6724c152728180925905519e84a5ddc17394ae303f
|
7
|
+
data.tar.gz: a9b058b152d0efa16e2907a290a3dfe6b1cca68b79dc5770ec92904b2ecf7e83175d862e624a48ab98122a0dfcf8b71b8459a32ccdafa085e21100eb3411e241
|
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,7 +1,14 @@
|
|
1
1
|
= CHANGELOG
|
2
2
|
|
3
|
-
== Unreleased (0.
|
3
|
+
== Unreleased (0.13.1)
|
4
4
|
|
5
|
+
== 0.13.0 - 3 April 2020
|
6
|
+
|
7
|
+
* *BREAKING* Remove support for very old versions of Rubygems (older than 1.2.0 which was released in 2008)
|
8
|
+
* *DEPRECATION* Remove CI testing for EOLed Ruby versions; now only testing on Ruby 2.4.1 and newer
|
9
|
+
* Updated the list of {Embedly}[https://embed.ly/] and {Noembed}[https://noembed.com/] URL schemes.
|
10
|
+
|
11
|
+
A *huge* thank you to {Ian Ker-Seymer}[https://github.com/ianks] for his recent PR that implemented _all_ of the above improvements!
|
5
12
|
|
6
13
|
== 0.12.0 - 26 March 2017
|
7
14
|
|
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.
|
data/Rakefile
CHANGED
@@ -9,6 +9,7 @@
|
|
9
9
|
- http://*.bubb.li/*
|
10
10
|
- http://*.buzzsprout.com/*
|
11
11
|
- http://*.cartodb.com/*/*
|
12
|
+
- http://*.cdn.vooplayer.com/*
|
12
13
|
- http://*.cincopa.com/watch/*
|
13
14
|
- http://*.cloud.panopto.eu/*
|
14
15
|
- http://*.crowdmap.com/map/*
|
@@ -24,6 +25,7 @@
|
|
24
25
|
- http://*.deviantart.com/gallery/*
|
25
26
|
- http://*.deviantart.net/*/*.gif
|
26
27
|
- http://*.deviantart.net/*/*.jpg
|
28
|
+
- http://*.embed\.fun/*
|
27
29
|
- http://*.force.com/presentation*
|
28
30
|
- http://*.hosted.panopto.com/*
|
29
31
|
- http://*.iplayerhd.com/player/video/*
|
@@ -31,10 +33,9 @@
|
|
31
33
|
- http://*.kaltura.com/*
|
32
34
|
- http://*.kastio.com/webcasts/*
|
33
35
|
- http://*.kinomap.com/*
|
34
|
-
- http://*.
|
35
|
-
- http://*.linkedin.com/in/*
|
36
|
-
- http://*.linkedin.com/pub/*
|
36
|
+
- http://*.libsyn.com/*
|
37
37
|
- http://*.looplogic.com/*
|
38
|
+
- http://*.paperform.co/*
|
38
39
|
- http://*.polarb.com/*
|
39
40
|
- http://*.razoo.com/*
|
40
41
|
- http://*.silk.co/explore/*
|
@@ -44,7 +45,7 @@
|
|
44
45
|
- http://*.sparemin.com/myrecording
|
45
46
|
- http://*.sparemin.com/recording-*
|
46
47
|
- http://*.staging.panopto.com/*
|
47
|
-
- http://*.
|
48
|
+
- http://*.tiktok.com/*
|
48
49
|
- http://*.tinypic.com/*.jpg
|
49
50
|
- http://*.tinypic.com/*.png
|
50
51
|
- http://*.tochka.net/*
|
@@ -52,11 +53,11 @@
|
|
52
53
|
- http://*.twentythree.net/*
|
53
54
|
- http://*.twitch.tv/*
|
54
55
|
- http://*.twitrpix.com/*
|
56
|
+
- http://*.typeform.com/*
|
55
57
|
- http://*.univision.com/*/video/*
|
56
58
|
- http://*.uservoice.com/*/suggestions/*
|
57
59
|
- http://*.vidcaster.com/*
|
58
60
|
- http://*.videomarketingplatform.co/*
|
59
|
-
- http://*.vzaar.me/*
|
60
61
|
- http://*.walkinto.in/*/*
|
61
62
|
- http://*.web.tv/*
|
62
63
|
- http://*.wi.st/*
|
@@ -79,106 +80,42 @@
|
|
79
80
|
- http://*viddler.com/v/*
|
80
81
|
- http://*vidyard.com/*
|
81
82
|
- http://*youtube.com/watch*
|
83
|
+
- http://23degrees.io/*
|
82
84
|
- http://23hq.com/*/photo/*
|
83
85
|
- http://23video.com/*
|
84
86
|
- http://360.io/*
|
87
|
+
- http://360stories.com/*
|
88
|
+
- http://3d.cappasity.com/u/*
|
89
|
+
- http://3dcrafts.co.kr/*
|
90
|
+
- http://3dcrafts.net/*
|
85
91
|
- http://4cook.net/recipe/*
|
86
92
|
- http://4sq.com/*
|
87
93
|
- http://59saniye.com/*
|
88
94
|
- http://60db.co/story/*
|
95
|
+
- http://a.fsbl.io/*
|
89
96
|
- http://abcnews.com/*/video/*
|
97
|
+
- http://acebot.ai/*
|
98
|
+
- http://acehiphop.com/*
|
90
99
|
- http://achewood.com/*
|
91
100
|
- http://achewood.com/index.php*
|
101
|
+
- http://adorilabs.com/*
|
102
|
+
- http://adpaths.com/*
|
92
103
|
- http://alkislarlayasiyorum.com/*
|
104
|
+
- http://allears.cc/*
|
93
105
|
- http://allihoopa.com/s/*
|
94
106
|
- http://alpha.vrchive.com/*
|
95
107
|
- http://alphahat.com/view/*
|
96
|
-
- http://amazon.ca/*/ASIN/*
|
97
|
-
- http://amazon.ca/*/dp/*
|
98
|
-
- http://amazon.ca/gp/aw/d/*
|
99
|
-
- http://amazon.ca/gp/offer-listing/*
|
100
|
-
- http://amazon.ca/gp/product/*
|
101
|
-
- http://amazon.ca/o/ASIN/*
|
102
|
-
- http://amazon.cn/*/ASIN/*
|
103
|
-
- http://amazon.cn/*/dp/*
|
104
|
-
- http://amazon.cn/gp/aw/d/*
|
105
|
-
- http://amazon.cn/gp/offer-listing/*
|
106
|
-
- http://amazon.cn/gp/product/*
|
107
|
-
- http://amazon.cn/o/ASIN/*
|
108
|
-
- http://amazon.co.jp/*/ASIN/*
|
109
|
-
- http://amazon.co.jp/*/dp/*
|
110
|
-
- http://amazon.co.jp/gp/aw/d/*
|
111
|
-
- http://amazon.co.jp/gp/offer-listing/*
|
112
|
-
- http://amazon.co.jp/gp/product/*
|
113
|
-
- http://amazon.co.jp/o/ASIN/*
|
114
|
-
- http://amazon.co.uk/*/ASIN/*
|
115
|
-
- http://amazon.co.uk/*/dp/*
|
116
|
-
- http://amazon.co.uk/gp/aw/d/*
|
117
|
-
- http://amazon.co.uk/gp/offer-listing/*
|
118
|
-
- http://amazon.co.uk/gp/product/*
|
119
|
-
- http://amazon.co.uk/o/ASIN/*
|
120
|
-
- http://amazon.com.au/*/ASIN/*
|
121
|
-
- http://amazon.com.au/*/dp/*
|
122
|
-
- http://amazon.com.au/gp/aw/d/*
|
123
|
-
- http://amazon.com.au/gp/offer-listing/*
|
124
|
-
- http://amazon.com.au/gp/product/*
|
125
|
-
- http://amazon.com.au/o/ASIN/*
|
126
|
-
- http://amazon.com.br/*/ASIN/*
|
127
|
-
- http://amazon.com.br/*/dp/*
|
128
|
-
- http://amazon.com.br/gp/aw/d/*
|
129
|
-
- http://amazon.com.br/gp/offer-listing/*
|
130
|
-
- http://amazon.com.br/gp/product/*
|
131
|
-
- http://amazon.com.br/o/ASIN/*
|
132
|
-
- http://amazon.com.mx/*/ASIN/*
|
133
|
-
- http://amazon.com.mx/*/dp/*
|
134
|
-
- http://amazon.com.mx/gp/aw/d/*
|
135
|
-
- http://amazon.com.mx/gp/offer-listing/*
|
136
|
-
- http://amazon.com.mx/gp/product/*
|
137
|
-
- http://amazon.com.mx/o/ASIN/*
|
138
|
-
- http://amazon.com/*/ASIN/*
|
139
|
-
- http://amazon.com/*/dp/*
|
140
|
-
- http://amazon.com/gp/aw/d/*
|
141
|
-
- http://amazon.com/gp/offer-listing/*
|
142
|
-
- http://amazon.com/gp/product/*
|
143
|
-
- http://amazon.com/o/ASIN/*
|
144
|
-
- http://amazon.de/*/ASIN/*
|
145
|
-
- http://amazon.de/*/dp/*
|
146
|
-
- http://amazon.de/gp/aw/d/*
|
147
|
-
- http://amazon.de/gp/offer-listing/*
|
148
|
-
- http://amazon.de/gp/product/*
|
149
|
-
- http://amazon.de/o/ASIN/*
|
150
|
-
- http://amazon.es/*/ASIN/*
|
151
|
-
- http://amazon.es/*/dp/*
|
152
|
-
- http://amazon.es/gp/aw/d/*
|
153
|
-
- http://amazon.es/gp/offer-listing/*
|
154
|
-
- http://amazon.es/gp/product/*
|
155
|
-
- http://amazon.es/o/ASIN/*
|
156
|
-
- http://amazon.fr/*/ASIN/*
|
157
|
-
- http://amazon.fr/*/dp/*
|
158
|
-
- http://amazon.fr/gp/aw/d/*
|
159
|
-
- http://amazon.fr/gp/offer-listing/*
|
160
|
-
- http://amazon.fr/gp/product/*
|
161
|
-
- http://amazon.fr/o/ASIN/*
|
162
|
-
- http://amazon.in/*/ASIN/*
|
163
|
-
- http://amazon.in/*/dp/*
|
164
|
-
- http://amazon.in/gp/aw/d/*
|
165
|
-
- http://amazon.in/gp/offer-listing/*
|
166
|
-
- http://amazon.in/gp/product/*
|
167
|
-
- http://amazon.in/o/ASIN/*
|
168
|
-
- http://amazon.it/*/ASIN/*
|
169
|
-
- http://amazon.it/*/dp/*
|
170
|
-
- http://amazon.it/gp/aw/d/*
|
171
|
-
- http://amazon.it/gp/offer-listing/*
|
172
|
-
- http://amazon.it/gp/product/*
|
173
|
-
- http://amazon.it/o/ASIN/*
|
174
|
-
- http://amzn.com/*
|
175
108
|
- http://anchor.fm/*
|
176
109
|
- http://aniboom.com/animation-video/*
|
177
110
|
- http://animal.discovery.com/videos/*
|
178
111
|
- http://animoto.com/play/*
|
179
112
|
- http://answers.polldaddy.com/poll/*
|
113
|
+
- http://apester.com/*
|
114
|
+
- http://api.bangbang.do/*
|
180
115
|
- http://api.lovelive.tv/v1/*
|
181
116
|
- http://api.minoto-video.com/publishers/*/videos/*
|
117
|
+
- http://app.badpanda.gg/*
|
118
|
+
- http://app.queezly.com/*
|
182
119
|
- http://app.sliderocket.com/*
|
183
120
|
- http://app.stghv.com/*
|
184
121
|
- http://app.ustudio.com/embed/*/*
|
@@ -186,22 +123,44 @@
|
|
186
123
|
- http://app.wistia.com/embed/medias/*
|
187
124
|
- http://app.wizer.me/learn/*
|
188
125
|
- http://app.wizer.me/preview/*
|
126
|
+
- http://appfollow.io/*
|
189
127
|
- http://arcg.is/*
|
128
|
+
- http://archivos.digital/*
|
129
|
+
- http://are.na/*
|
130
|
+
- http://article.voxsnap.com/*
|
190
131
|
- http://askmen.com/video/*
|
191
132
|
- http://asofterworld.com/*.jpg
|
133
|
+
- http://athenascope.com/*
|
192
134
|
- http://audioboom.com/boos/*
|
193
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/*
|
194
143
|
- http://bale.io/*
|
195
144
|
- http://bambuser.com/channel/*
|
196
145
|
- http://bambuser.com/channel/*/broadcast/*
|
197
146
|
- http://bambuser.com/v/*
|
147
|
+
- http://bangbang.do/*
|
198
148
|
- http://bcove.me/*
|
149
|
+
- http://bcove.video/*
|
150
|
+
- http://beautiful.ai/*
|
199
151
|
- http://behance.net/gallery/*
|
200
152
|
- http://beta-sliderocket.com/*
|
153
|
+
- http://beta.mapinmind.net/*
|
201
154
|
- http://beta.polstir.com/*/*
|
155
|
+
- http://bingewith.com/*
|
156
|
+
- http://bitofme.io/*
|
202
157
|
- http://blab.im/*
|
203
158
|
- http://blip.tv/*/*
|
159
|
+
- http://blogcast.host/*
|
160
|
+
- http://blogsend.io/*
|
161
|
+
- http://blueprintue.com/*
|
204
162
|
- http://boo.fm/b*
|
163
|
+
- http://bootkik.com/*
|
205
164
|
- http://bop.fm/s/*/*
|
206
165
|
- http://boston.com/*video*
|
207
166
|
- http://boston.com/video*
|
@@ -209,23 +168,36 @@
|
|
209
168
|
- http://brainshark.com/*/*
|
210
169
|
- http://brainsonic.com/*
|
211
170
|
- http://bravotv.com/*/*/videos/*
|
212
|
-
- http://break.com/*/*
|
213
171
|
- http://bubb.li/*
|
172
|
+
- http://buk.io/*
|
214
173
|
- http://bumpers.fm/e/*
|
174
|
+
- http://buncee.com/*
|
215
175
|
- http://bunkrapp.com/*/*
|
176
|
+
- http://buttondown.email/*
|
177
|
+
- http://buyte.co/embed*
|
216
178
|
- http://buzzsprout.com/*
|
179
|
+
- http://cadence13.com/*
|
217
180
|
- http://calameo.com/*
|
181
|
+
- http://calconic.com/*
|
218
182
|
- http://campaign.theheartstringsproject.com/*
|
219
183
|
- http://canalplus.fr/*
|
184
|
+
- http://captur3d.io/*
|
185
|
+
- http://carbon.now.sh/*
|
186
|
+
- http://cards.heeyy.com/*
|
220
187
|
- http://cayke.co/*
|
221
188
|
- http://cbsnews.com/video/watch/*
|
222
189
|
- http://cdn.knightlab.com/libs/juxtapose/*
|
223
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/*
|
224
195
|
- http://chew.tv/*/*
|
225
196
|
- http://chirb.it/*
|
226
197
|
- http://cincopa.com/~*
|
227
|
-
- http://
|
228
|
-
- http://
|
198
|
+
- http://cinema8.com/*
|
199
|
+
- http://cinnamon.video/*
|
200
|
+
- http://clay.run/*
|
229
201
|
- http://clippituser.tv/*
|
230
202
|
- http://clipter.com/c/*
|
231
203
|
- http://clyp.it/*
|
@@ -234,55 +206,98 @@
|
|
234
206
|
- http://cnbc.com/id/*/play/1/video/*
|
235
207
|
- http://cnbc.com/id/*?*video*
|
236
208
|
- http://cnn.it/*
|
209
|
+
- http://codeembed.dev/*
|
210
|
+
- http://codegenerators.io/*
|
211
|
+
- http://codeocean.com/*
|
237
212
|
- http://codepen.io/*/pen/*
|
238
213
|
- http://codepen.io/*/pen/*
|
239
214
|
- http://codepicnic.com/bites/*
|
240
215
|
- http://codepicnic.com/consoles/*
|
241
216
|
- http://codeply.com/view/*
|
217
|
+
- http://codeprism.co/*
|
218
|
+
- http://codesandbox.io/*
|
219
|
+
- http://codesandbox.io/*
|
242
220
|
- http://codiva.io/p/*
|
221
|
+
- http://cohe.se/*
|
222
|
+
- http://collect.chat/*
|
243
223
|
- http://collegehumor.com/video/*
|
244
224
|
- http://collegehumor.com/video:*
|
225
|
+
- http://commaful.com/*
|
245
226
|
- http://confreaks.com/videos/*
|
246
227
|
- http://confreaks.net/videos/*
|
247
228
|
- http://content.newsbound.com/*/*
|
248
229
|
- http://content.streamonecloud.net/embed/*
|
249
|
-
- http://contentupgrade.me/*
|
250
230
|
- http://cooler.tv/*
|
251
231
|
- http://coub.com/embed/*
|
252
232
|
- http://coub.com/view/*
|
253
233
|
- http://crowdmap.com/map/*
|
254
234
|
- http://crowdmap.com/post/*
|
235
|
+
- http://cube365.net/*
|
255
236
|
- http://d.pr/i/*
|
237
|
+
- http://danfoss.com/*
|
256
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/*
|
257
243
|
- http://datawrapper.dwcdn.net/*
|
244
|
+
- http://dcaclab.com/*
|
245
|
+
- http://decs.xyz/*
|
246
|
+
- http://diagramy.com/*
|
258
247
|
- http://distrify.com/film/*
|
248
|
+
- http://dlystr.io/*
|
259
249
|
- http://dnbradio.com/*
|
260
|
-
- http://
|
250
|
+
- http://docdroid.net/*
|
251
|
+
- http://doculet.net/*
|
261
252
|
- http://dotsub.com/view/*
|
262
253
|
- http://drbl.in/*
|
263
254
|
- http://dreambroker.com/channel/*
|
264
255
|
- http://dsc.discovery.com/videos/*
|
256
|
+
- http://dtsgr.com/*
|
265
257
|
- http://edition.cnn.com/video/*
|
266
258
|
- http://edition.cnn.com/videos/*
|
259
|
+
- http://edocr.com/*
|
260
|
+
- http://elementari.io/*
|
267
261
|
- http://ellie-app.com/*/*
|
262
|
+
- http://embed.actionbutton.co/embedly*
|
263
|
+
- http://embed.eberus.com/*
|
268
264
|
- http://embed.imajize.com/*
|
269
265
|
- http://embed.kumu.io
|
270
266
|
- http://embed.kumu.io
|
267
|
+
- http://embed.medleytext.net/*
|
271
268
|
- http://embed.minoto-video.com/*
|
269
|
+
- http://embed.sigsev.io/*
|
270
|
+
- http://embed.socialexplorer.com/*
|
271
|
+
- http://embed.socialexplorer.com/*
|
272
|
+
- http://embedery.com/*
|
273
|
+
- http://emojicom.io/*
|
274
|
+
- http://emojot.com/*
|
275
|
+
- http://envelope.li/*
|
276
|
+
- http://epluribus.io/*
|
272
277
|
- http://esplor.io/*
|
273
|
-
- http://
|
278
|
+
- http://ethfiddle.com/*
|
274
279
|
- http://exploratory.io/viz/*
|
275
280
|
- http://eyrie.io/*
|
281
|
+
- http://facer.io/*
|
282
|
+
- http://factsumo.com/*
|
276
283
|
- http://fav.me/*
|
277
284
|
- http://fb.com
|
278
285
|
- http://fb.me/*
|
286
|
+
- http://firstory.me/*
|
279
287
|
- http://fiverr.com/*/*
|
280
288
|
- http://flat.io/score/*
|
289
|
+
- http://flexvid.io/*
|
281
290
|
- http://flic.kr/*
|
291
|
+
- http://flipnot.es/*
|
292
|
+
- http://flixel.com/*
|
293
|
+
- http://flourish.studio/*
|
282
294
|
- http://flowvella.com/s/*
|
295
|
+
- http://fontself.com/*
|
296
|
+
- http://footpathapp.com/*
|
283
297
|
- http://fora.tv/*/*/*/*
|
284
298
|
- http://forge.gg/*
|
285
|
-
- http://
|
299
|
+
- http://form.jotform.com/*
|
300
|
+
- http://formula-embedappspot.com/*
|
286
301
|
- http://fotopedia.com/*/*
|
287
302
|
- http://foursquare.com/*
|
288
303
|
- http://fr.peoplbrain.com/tutoriaux/*
|
@@ -295,186 +310,287 @@
|
|
295
310
|
- http://futurism.com/images/*
|
296
311
|
- http://fwdeveryone.com/t/*
|
297
312
|
- http://galeri.uludagsozluk.com/*
|
313
|
+
- http://gametakes.com/*
|
298
314
|
- http://gametrailers.com/video*
|
315
|
+
- http://genesisplayer.io/*
|
316
|
+
- http://genius.com/videos/*
|
299
317
|
- http://getclippy.co/p/*
|
318
|
+
- http://getcloudapp.com/*
|
319
|
+
- http://getfader.com/*
|
320
|
+
- http://getshuffle.app/*
|
321
|
+
- http://getsportsme.com/*
|
300
322
|
- http://gfycat.com/*
|
323
|
+
- http://gif-vif.com/*
|
301
324
|
- http://giflike.com/a/*
|
325
|
+
- http://gifyourgame.com/*
|
302
326
|
- http://giphy.com/gifs/*
|
303
327
|
- http://gist.github.com/*
|
328
|
+
- http://gitpitch.com/*/*
|
329
|
+
- http://glitch.com/*
|
330
|
+
- http://go.vooozer.com/*
|
331
|
+
- http://goabstract.com/*
|
304
332
|
- http://goanimate.com/videos/*
|
305
333
|
- http://godtube.com/featured/video/*
|
306
334
|
- http://godtube.com/watch/*
|
335
|
+
- http://goodworld.me/*
|
307
336
|
- http://google.*/maps/*
|
308
337
|
- http://google.com/profiles/*
|
338
|
+
- http://goplayalong.com/*
|
339
|
+
- http://gosynth.com/*
|
309
340
|
- http://gph.is/*
|
341
|
+
- http://grain.co/*
|
310
342
|
- http://graphcommons.com/graphs/*
|
311
343
|
- http://graphcommons.com/nodes/*
|
312
344
|
- http://graphiq.com/w/*
|
345
|
+
- http://greetor.com/*
|
346
|
+
- http://gridble.io/*
|
313
347
|
- http://grindtv.com/*/video/*
|
314
348
|
- http://grooveshark.com/*
|
315
|
-
- http://gty.im/*
|
316
349
|
- http://guardian.co.uk/*/video/*/*/*/*
|
350
|
+
- http://guilded.gg/*
|
317
351
|
- http://hapyak.com/embed/*
|
318
352
|
- http://hardbound.co/*/*/*
|
353
|
+
- http://hatchxr.com/*
|
319
354
|
- http://health.discovery.com/videos/*
|
355
|
+
- http://herth.co/*
|
356
|
+
- http://heytwist.com/*
|
357
|
+
- http://hopbucket.com/plan-details/*
|
320
358
|
- http://huffduffer.com/*/*
|
321
359
|
- http://hulu.com/w/*
|
322
360
|
- http://hulu.com/watch*
|
323
361
|
- http://hulu.tv/*
|
324
362
|
- http://hypem.com/premiere/*
|
325
|
-
- http://i*.photobucket.com/albums/*
|
326
363
|
- http://i.giflike.com/*
|
327
|
-
- http://identi.ca/notice/*
|
328
364
|
- http://ifood.tv/channel/user/*
|
329
365
|
- http://ifood.tv/recipe/*
|
330
366
|
- http://ifood.tv/video/*
|
331
367
|
- http://iframe.minoto-video.com/*
|
332
368
|
- http://ifttt.com/recipes/*
|
333
369
|
- http://ign.com/videos/*
|
370
|
+
- http://iheart.com/*
|
334
371
|
- http://img.ly/*
|
335
|
-
- http://img.skitch.com/*
|
336
372
|
- http://imgs.xkcd.com/*
|
373
|
+
- http://indshine.com/*
|
374
|
+
- http://infogr.am/*
|
375
|
+
- http://infogram.com/*
|
337
376
|
- http://infomous.com/node/*
|
377
|
+
- http://injurymap.com/*
|
338
378
|
- http://instagr.am/p/*
|
339
379
|
- http://instagram.com/p/*
|
380
|
+
- http://instaread.co/*
|
381
|
+
- http://intellogo.com/*
|
340
382
|
- http://investigation.discovery.com/videos/*
|
341
383
|
- http://isnare.com/*
|
342
384
|
- http://issuu.com/*/docs/*
|
343
385
|
- http://it.youtube.com/*
|
386
|
+
- http://itemsy.com/*
|
387
|
+
- http://itslit.com/*
|
344
388
|
- http://izlesene.com/video/*
|
345
389
|
- http://jdsupra.com/legalnews/*
|
346
390
|
- http://jibjab.com/view/*
|
391
|
+
- http://jovian.ml/*
|
347
392
|
- http://jsbin.com/*
|
348
393
|
- http://jsbin.com/*/*
|
394
|
+
- http://jscomplete.com/*
|
349
395
|
- http://jsfiddle.net/*
|
396
|
+
- http://jsitor.com/*
|
350
397
|
- http://kastio.com/webcasts/*
|
351
398
|
- http://khanacademy.org/*
|
352
399
|
- http://kidoju.com/*
|
353
400
|
- http://kit.com/*
|
401
|
+
- http://kralify.com/watch*
|
402
|
+
- http://kyso.io/*
|
403
|
+
- http://launch.newsinc.com/*
|
354
404
|
- http://lcontacts.herokuapp.com/embed/button/*
|
405
|
+
- http://lean-data-science.com/*
|
406
|
+
- http://like.co/*
|
355
407
|
- http://link.brightcove.com/services/player/bcpid*
|
356
|
-
- http://linkedin.com/company/*
|
357
|
-
- http://linkedin.com/in/*
|
358
|
-
- http://linkedin.com/in/*
|
359
|
-
- http://linkedin.com/pub/*
|
360
408
|
- http://list.ly/list/*
|
409
|
+
- http://listennotes.com/*
|
410
|
+
- http://listle.io/*
|
361
411
|
- http://live.huffingtonpost.com/r/segment/*/*
|
362
412
|
- http://liveleak.com/view?*
|
413
|
+
- http://livestream.com/*
|
363
414
|
- http://logotv.com/video/*
|
364
415
|
- http://lonelyplanet.com/Clip.aspx?*
|
365
|
-
- http://
|
416
|
+
- http://ludus.one/*
|
366
417
|
- http://lustich.de/videos/*
|
367
418
|
- http://lynda.com/*
|
368
419
|
- http://m.youtube.com/index*
|
369
420
|
- http://m.youtube.com/watch*
|
370
421
|
- http://magisto.com/*
|
422
|
+
- http://makecode.com/*
|
423
|
+
- http://makecode.com/*
|
371
424
|
- http://maphubs.com/user/*/map/*
|
372
425
|
- http://maps.google.com/?*
|
373
426
|
- http://maps.google.com/maps/ms?*
|
374
427
|
- http://maps.google.com/maps?*
|
375
|
-
- http://mathembed.com/latex*
|
376
428
|
- http://meadd.com/*
|
377
429
|
- http://meadd.com/*/*
|
378
|
-
- http://
|
430
|
+
- http://medal.tv/*
|
431
|
+
- http://media.giphy.com/media/*
|
379
432
|
- http://mediamatters.org/mmtv/*
|
380
433
|
- http://medibang.com/sv/*
|
434
|
+
- http://meedle.io/*
|
381
435
|
- http://meetu.ps/*
|
436
|
+
- http://megaphone.fm/*
|
382
437
|
- http://megavisor.com/en/view/*
|
383
438
|
- http://megavisor.com/view/*
|
384
439
|
- http://military.discovery.com/videos/*
|
440
|
+
- http://millioneyez.com/*
|
385
441
|
- http://minilogs.com/*
|
386
442
|
- http://minko.io/s/
|
387
443
|
- http://mixergy.com/*
|
388
444
|
- http://mlkshk.com/p/*
|
389
445
|
- http://moby.to/*
|
390
446
|
- http://momento360.com/e/u/*
|
447
|
+
- http://momento360.com/e/uc/*
|
391
448
|
- http://money.cnn.com/video/*
|
392
449
|
- http://money.cnn.com/videos/*
|
450
|
+
- http://moveshelf.com/*
|
451
|
+
- http://mpembed.com/*
|
393
452
|
- http://mpora.com/videos/*
|
394
453
|
- http://msn.foxsports.com/video*
|
395
454
|
- http://msnbc.msn.com/*/watch/*
|
396
455
|
- http://multimedia.foxsports.com/m/video/*/*
|
456
|
+
- http://muralapp.io/*
|
397
457
|
- http://muvi.es/*
|
398
458
|
- http://muzu.tv/*
|
399
459
|
- http://my.opera.com/*/albums/show.dml?id=*
|
400
460
|
- http://my.opera.com/*/albums/showpic.dml?album=*&picture=*
|
461
|
+
- http://my.panomoments.com/*
|
401
462
|
- http://my.storygami.com/video/*
|
402
463
|
- http://my.webboards.fr/*
|
403
464
|
- http://mybeweeg.com/w/*
|
404
|
-
- http://
|
465
|
+
- http://mymixtapez.com/*
|
405
466
|
- http://mynet.com/video/*
|
467
|
+
- http://myvideoplace.tv/*
|
468
|
+
- http://namchey.com/*
|
469
|
+
- http://naturalatlas.com/*
|
406
470
|
- http://nbcnews.com/*
|
407
|
-
- http://
|
471
|
+
- http://neatclip.com/*
|
472
|
+
- http://nodalview.com/*
|
473
|
+
- http://npmcharts.com/*
|
474
|
+
- http://nr8.com/embed/*
|
475
|
+
- http://nuggetcharts.com/*
|
408
476
|
- http://nzonscreen.com/title/*
|
409
477
|
- http://oddshot.tv/*
|
478
|
+
- http://odiocast.com/*
|
479
|
+
- http://oice.com/*
|
480
|
+
- http://okluffa.com/*
|
481
|
+
- http://omniscope.me/*
|
482
|
+
- http://omny.fm/*
|
410
483
|
- http://on.aol.com/playlist/*
|
411
484
|
- http://on.aol.com/video/*
|
412
485
|
- http://on.bubb.li/*
|
413
486
|
- http://open.spotify.com/*
|
487
|
+
- http://openings.moe/*
|
488
|
+
- http://openprocessing.org/*
|
414
489
|
- http://orbitvu.com/001/*
|
415
490
|
- http://oumy.com/v/*
|
491
|
+
- http://overflow.io/*
|
416
492
|
- http://ow.ly/i/*
|
493
|
+
- http://parkfy.com/*
|
494
|
+
- http://pasteapp.com/*
|
417
495
|
- http://pastebin.com/*
|
418
496
|
- http://pastie.org/*
|
497
|
+
- http://patching.io/*
|
419
498
|
- http://photozou.jp/photo/photo_only/*/*
|
420
499
|
- http://photozou.jp/photo/show/*/*
|
421
500
|
- http://pikchur.com/*
|
501
|
+
- http://pinecast.co/*
|
502
|
+
- http://pippa.io/*
|
503
|
+
- http://pixdor.com/*
|
422
504
|
- http://pixorial.com/watch/*
|
423
505
|
- http://planetgreen.discovery.com/videos/*
|
506
|
+
- http://play.buto.tv/*
|
507
|
+
- http://play.kotlinlang.org/embed#*http://pl.kotl.in/*
|
424
508
|
- http://play.minoto-video.com/*
|
425
509
|
- http://play.radiopublic.com/*
|
426
510
|
- http://play.soundsgood.co/*
|
427
511
|
- http://play.spotify.com/*
|
512
|
+
- http://player.entrypoint.live/*
|
428
513
|
- http://player.megaphone.fm/*
|
429
514
|
- http://player.videopath.com/*
|
430
515
|
- http://player.vimeo.com/*
|
431
516
|
- http://players.brightcove.net/*
|
432
|
-
- http://
|
517
|
+
- http://playpost.app/*
|
518
|
+
- http://plays.tv/*/*
|
519
|
+
- http://plnkr.co/*
|
520
|
+
- http://plnkr.co/*
|
521
|
+
- http://plotly.com/*
|
433
522
|
- http://plus.google.com/*
|
434
523
|
- http://polarb.com/*
|
524
|
+
- http://polarishare.com/*
|
435
525
|
- http://polaroidswing.com/p/*
|
436
526
|
- http://polldaddy.com/community/poll/*
|
437
527
|
- http://polldaddy.com/poll/*
|
438
|
-
- http://
|
439
|
-
- http://
|
528
|
+
- http://pollforall.com/*
|
529
|
+
- http://pollsify.com/*
|
530
|
+
- http://pollstar.com/*
|
440
531
|
- http://polstir.com/*/*
|
441
532
|
- http://ponga.com/*
|
442
533
|
- http://popchest.com/*/
|
534
|
+
- http://portal.paratii.video/*
|
443
535
|
- http://portal.sliderocket.com/*
|
536
|
+
- http://posixion.com/*
|
537
|
+
- http://pressekompass.net/*
|
444
538
|
- http://prezi.com/*/*
|
539
|
+
- http://procfu.com/*
|
445
540
|
- http://producthunt.com/*
|
446
541
|
- http://public.chartblocks.com/c/*
|
447
542
|
- http://public.talely.com/*/*
|
543
|
+
- http://publicinput.com/*
|
544
|
+
- http://publish.viostream.com/play/*
|
545
|
+
- http://publit.io/*
|
448
546
|
- http://publons.com/author/*
|
547
|
+
- http://pulse.qa/*
|
449
548
|
- http://qanda.co/q/*
|
450
549
|
- http://qik.com/*
|
451
550
|
- http://qik.com/video/*
|
452
551
|
- http://qik.ly/*
|
552
|
+
- http://quantum-circuit.com/*
|
453
553
|
- http://questionablecontent.net/
|
454
554
|
- http://questionablecontent.net/comics/*.png
|
455
555
|
- http://questionablecontent.net/view.php*
|
556
|
+
- http://qumucloud.com/*
|
456
557
|
- http://quora.com/*/answer/*
|
457
558
|
- http://radd.it/comments/*
|
458
559
|
- http://radd.it/magic/*
|
459
560
|
- http://radd.it/playlists/*
|
460
561
|
- http://radd.it/r/*
|
461
562
|
- http://radd.it/user/*
|
563
|
+
- http://radiopublic.com/*
|
462
564
|
- http://radioreddit.com/?q=songs*
|
463
565
|
- http://radioreddit.com/songs*
|
464
566
|
- http://rapidengage.com/s/*
|
567
|
+
- http://rave.dj/*
|
568
|
+
- http://reading.fm/*
|
465
569
|
- http://redivis.com/r/*
|
466
570
|
- http://redux.com/f/*/*
|
467
571
|
- http://redux.com/stream/item/*/*
|
572
|
+
- http://registry.bitmark.com/*
|
573
|
+
- http://rekt.gg/*
|
468
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/*
|
469
580
|
- http://reuters.com/video/*
|
470
581
|
- http://rocketium.com/*
|
471
582
|
- http://rogertalk.com/*
|
583
|
+
- http://roshiclips.com/watch*
|
584
|
+
- http://rumble.com/*
|
472
585
|
- http://runelm.io/*/*
|
473
|
-
- http://
|
586
|
+
- http://runkit.com/*
|
474
587
|
- http://say.ly/*
|
588
|
+
- http://scalafiddle.io/*
|
589
|
+
- http://scapic.com/*
|
475
590
|
- http://science.discovery.com/videos/*
|
476
591
|
- http://sciencestage.com/a/*.html
|
477
592
|
- http://sciencestage.com/v/*.html
|
593
|
+
- http://scorebat.com/*
|
478
594
|
- http://screencast.com/*/media/*
|
479
595
|
- http://screencast.com/t/*
|
480
596
|
- http://screenhunters.com/*
|
@@ -482,57 +598,94 @@
|
|
482
598
|
- http://scribblemaps.com/maps/view/*/*
|
483
599
|
- http://scribd.com/doc/*
|
484
600
|
- http://scribd.com/mobile/documents/*
|
601
|
+
- http://scrimba.com/*
|
602
|
+
- http://searchie.io/*
|
603
|
+
- http://secure.plays.tv/*/*
|
604
|
+
- http://seekbeak.com/v/*
|
485
605
|
- http://sendables.jibjab.com/originals/*
|
486
606
|
- http://sendables.jibjab.com/view/*
|
487
607
|
- http://sendvid.com/*
|
608
|
+
- http://serenader.io/*
|
488
609
|
- http://services.momindum.com/embedly/*
|
610
|
+
- http://sheetsu.com/tables/*
|
489
611
|
- http://shoplocket.com/products/*
|
490
612
|
- http://shorti.com/*
|
491
613
|
- http://showme.com/sh/*
|
492
614
|
- http://sidewire.com/*/*/*
|
493
|
-
- http://
|
615
|
+
- http://simmer.io/*/*
|
494
616
|
- http://skip.st/one/*
|
495
|
-
- http://skitch.com/*/*/*
|
496
617
|
- http://sliderocket.com/*
|
497
618
|
- http://slidesha.re/*
|
619
|
+
- http://slidetosubscribe.com/*
|
498
620
|
- http://slidr.io/*/*
|
621
|
+
- http://snack.expo.io/*
|
499
622
|
- http://snappd\.tv/*
|
500
623
|
- http://snd.sc/*
|
624
|
+
- http://snipaclip.com/*
|
625
|
+
- http://snipit.io/*
|
501
626
|
- http://snotr.com/video/*
|
502
627
|
- http://socialcam.com/v/*
|
628
|
+
- http://socialexplorer.com/*
|
503
629
|
- http://some.ly/*
|
504
630
|
- http://someecards.com/*/*
|
631
|
+
- http://song.link/*
|
505
632
|
- http://soundcloud.com/*
|
506
633
|
- http://soundcloud.com/*/*
|
507
634
|
- http://soundcloud.com/*/sets/*
|
508
635
|
- http://soundcloud.com/groups/*
|
509
|
-
- http://spaces.archilogic.com/3d/*
|
510
636
|
- http://spaces.archilogic.com/model/*
|
511
637
|
- http://speakerdeck.com/*/*
|
638
|
+
- http://speakytext.com/*
|
639
|
+
- http://sphereplay.com/*
|
512
640
|
- http://spiegel.de/video/*
|
641
|
+
- http://spkt.io/*
|
513
642
|
- http://spoti.fi/*
|
643
|
+
- http://spott.tv/*
|
644
|
+
- http://spreaker.com/*
|
514
645
|
- http://spreecast.com/events/*
|
515
646
|
- http://sproutvideo.com/videos/*
|
647
|
+
- http://stackblitz.com/*
|
516
648
|
- http://stackshare.io/*
|
649
|
+
- http://stagevids.com/watch*
|
650
|
+
- http://stanza.co/*
|
517
651
|
- http://stepic.org/*
|
518
|
-
- http://
|
652
|
+
- http://stonly.com/*
|
653
|
+
- http://store.pixdor.com/*
|
654
|
+
- http://storeo.io/*
|
655
|
+
- http://stories.nws.ai/*
|
519
656
|
- http://storribook.com/articles/view/*/*
|
657
|
+
- http://storyforj.com/*
|
520
658
|
- http://storygami.com/v/*
|
659
|
+
- http://storymaps.arcgis.com/stories/*
|
521
660
|
- http://streamable.com/*
|
522
661
|
- http://streamio.com/api/v1/*
|
662
|
+
- http://streamr.network/*
|
523
663
|
- http://streetfire.net/video/*.htm*
|
664
|
+
- http://sudomemo.net/*
|
524
665
|
- http://superstack.io/v/*
|
666
|
+
- http://supgif.com/*
|
667
|
+
- http://svrf.com/*
|
668
|
+
- http://swiftsnip.com/*
|
669
|
+
- http://swymrelay.com/*
|
525
670
|
- http://tagmotion.com/tree/*
|
526
671
|
- http://talkshow.im/show/*
|
672
|
+
- http://tambur.co/*
|
527
673
|
- http://tapewrite.com/*
|
528
|
-
- http://
|
674
|
+
- http://tech.io/snippet/*
|
529
675
|
- http://tenor.co/*
|
676
|
+
- http://tenor.com/*
|
677
|
+
- http://terminaid.com/*
|
678
|
+
- http://texblocks.com/*
|
530
679
|
- http://thecolbertreport.cc.com/videos/*
|
531
680
|
- http://thedailyshow.cc.com/videos/*
|
532
681
|
- http://theguardian.com/*/video/*/*/*/*
|
533
682
|
- http://thelastgraph.com/lg.php?a=*
|
534
683
|
- http://theonion.com/video/*
|
684
|
+
- http://thesportsme.com/*
|
685
|
+
- http://thinglink.com/*
|
686
|
+
- http://threesixty.tours/*
|
535
687
|
- http://ticker.tv/v/*
|
688
|
+
- http://tiktok.com/*
|
536
689
|
- http://tinypic.com/player.php*
|
537
690
|
- http://tinypic.com/r/*/*
|
538
691
|
- http://tinypic.com/view.php*
|
@@ -547,13 +700,20 @@
|
|
547
700
|
- http://tunein.com/*
|
548
701
|
- http://twitch.tv/*
|
549
702
|
- http://twitrpix.com/*
|
703
|
+
- http://typecast.ai/*
|
704
|
+
- http://uilicious.com/*
|
550
705
|
- http://uploads.knightlab.com/storymapjs/*/index.html
|
551
706
|
- http://upscri.be/*
|
707
|
+
- http://usehappen.com/*
|
708
|
+
- http://useloom.com/share/*
|
552
709
|
- http://ustre.am/*
|
553
710
|
- http://v.embedly.com/*
|
554
711
|
- http://v.youku.com/v_playlist/*
|
555
712
|
- http://v.youku.com/v_show/*
|
713
|
+
- http://vectary.com/*
|
714
|
+
- http://vectorlogo.zone/*
|
556
715
|
- http://veoh.com/watch/*
|
716
|
+
- http://verasity.io/player*
|
557
717
|
- http://verse.com/stories/*
|
558
718
|
- http://vibi.com/videocard/*
|
559
719
|
- http://vice.com/*
|
@@ -571,36 +731,52 @@
|
|
571
731
|
- http://videodetective.com/*/*
|
572
732
|
- http://videodonor.com/video/*
|
573
733
|
- http://videos.nymag.com/*
|
734
|
+
- http://vidgrid.com/*
|
574
735
|
- http://vids.myspace.com/index.cfm?fuseaction=vids.individual&videoid*
|
736
|
+
- http://view.genial.ly/*
|
575
737
|
- http://view.stacker.cc/*
|
738
|
+
- http://viewer.archilogic.com/*
|
576
739
|
- http://vilynx.com/video/*
|
577
740
|
- http://vimeo.com/*
|
578
741
|
- http://vimeo.com/groups/*/videos/*
|
579
742
|
- http://vimeo.com/m/#/*
|
743
|
+
- http://vimsical.com/vims/*
|
580
744
|
- http://vine.co/v/*
|
581
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/*
|
582
751
|
- http://vol.at/video/*
|
583
752
|
- http://vr3d.vn/*
|
584
753
|
- http://vrbfoto.com/f/*
|
585
754
|
- http://vrchive.com/*
|
586
755
|
- http://vube.com/*/*
|
587
|
-
- http://
|
588
|
-
- http://vzaar.me/*
|
589
|
-
- http://vzaar.tv/*
|
756
|
+
- http://vysda.com/*
|
590
757
|
- http://w.graphiq.com/w/*
|
591
758
|
- http://walkinto.in/*/*
|
592
|
-
- http://washingtonpost.com/wp-dyn/*/video/*/*/*/*
|
593
759
|
- http://weavly.com/watch/*
|
594
760
|
- http://web.tv/*
|
761
|
+
- http://webassembly.studio/*
|
762
|
+
- http://websitevoice.com/*
|
595
763
|
- http://wedgi.es/*
|
596
|
-
- http://
|
597
|
-
- http://
|
764
|
+
- http://wedonthavetime.org/*
|
765
|
+
- http://weekendsuperheroes.com/*
|
766
|
+
- http://whooshkaa.com/*
|
598
767
|
- http://wi.st/*
|
768
|
+
- http://widgetic.com/*
|
769
|
+
- http://widgets.feedbeaver.com/*
|
599
770
|
- http://wirewax.com/*
|
600
771
|
- http://wistia.com/*
|
601
772
|
- http://with.in/watch/*
|
773
|
+
- http://withkoji.com/*
|
774
|
+
- http://wonderbooth.com.my/*
|
602
775
|
- http://wordpress.tv/*/*/*/*/
|
603
776
|
- http://worldstarhiphop.com/videos/video*.php?v=*
|
777
|
+
- http://worthyt.io/*
|
778
|
+
- http://wribbn.com/*
|
779
|
+
- http://writeinstone.com/*
|
604
780
|
- http://www.23hq.com/*/photo/*
|
605
781
|
- http://www.59saniye.com/*
|
606
782
|
- http://www.achewood.com/*
|
@@ -609,85 +785,6 @@
|
|
609
785
|
- http://www.allego.com/*
|
610
786
|
- http://www.alphahat.com/view/*
|
611
787
|
- http://www.altizure.com/project/*
|
612
|
-
- http://www.amazon.ca/*/ASIN/*
|
613
|
-
- http://www.amazon.ca/*/dp/*
|
614
|
-
- http://www.amazon.ca/gp/aw/d/*
|
615
|
-
- http://www.amazon.ca/gp/offer-listing/*
|
616
|
-
- http://www.amazon.ca/gp/product/*
|
617
|
-
- http://www.amazon.ca/o/ASIN/*
|
618
|
-
- http://www.amazon.cn/*/ASIN/*
|
619
|
-
- http://www.amazon.cn/*/dp/*
|
620
|
-
- http://www.amazon.cn/gp/aw/d/*
|
621
|
-
- http://www.amazon.cn/gp/offer-listing/*
|
622
|
-
- http://www.amazon.cn/gp/product/*
|
623
|
-
- http://www.amazon.cn/o/ASIN/*
|
624
|
-
- http://www.amazon.co.jp/*/ASIN/*
|
625
|
-
- http://www.amazon.co.jp/*/dp/*
|
626
|
-
- http://www.amazon.co.jp/gp/aw/d/*
|
627
|
-
- http://www.amazon.co.jp/gp/offer-listing/*
|
628
|
-
- http://www.amazon.co.jp/gp/product/*
|
629
|
-
- http://www.amazon.co.jp/o/ASIN/*
|
630
|
-
- http://www.amazon.co.uk/*/ASIN/*
|
631
|
-
- http://www.amazon.co.uk/*/dp/*
|
632
|
-
- http://www.amazon.co.uk/gp/aw/d/*
|
633
|
-
- http://www.amazon.co.uk/gp/offer-listing/*
|
634
|
-
- http://www.amazon.co.uk/gp/product/*
|
635
|
-
- http://www.amazon.co.uk/o/ASIN/*
|
636
|
-
- http://www.amazon.com.au/*/ASIN/*
|
637
|
-
- http://www.amazon.com.au/*/dp/*
|
638
|
-
- http://www.amazon.com.au/gp/aw/d/*
|
639
|
-
- http://www.amazon.com.au/gp/offer-listing/*
|
640
|
-
- http://www.amazon.com.au/gp/product/*
|
641
|
-
- http://www.amazon.com.au/o/ASIN/*
|
642
|
-
- http://www.amazon.com.br/*/ASIN/*
|
643
|
-
- http://www.amazon.com.br/*/dp/*
|
644
|
-
- http://www.amazon.com.br/gp/aw/d/*
|
645
|
-
- http://www.amazon.com.br/gp/offer-listing/*
|
646
|
-
- http://www.amazon.com.br/gp/product/*
|
647
|
-
- http://www.amazon.com.br/o/ASIN/*
|
648
|
-
- http://www.amazon.com.mx/*/ASIN/*
|
649
|
-
- http://www.amazon.com.mx/*/dp/*
|
650
|
-
- http://www.amazon.com.mx/gp/aw/d/*
|
651
|
-
- http://www.amazon.com.mx/gp/offer-listing/*
|
652
|
-
- http://www.amazon.com.mx/gp/product/*
|
653
|
-
- http://www.amazon.com.mx/o/ASIN/*
|
654
|
-
- http://www.amazon.com/*/ASIN/*
|
655
|
-
- http://www.amazon.com/*/dp/*
|
656
|
-
- http://www.amazon.com/gp/aw/d/*
|
657
|
-
- http://www.amazon.com/gp/offer-listing/*
|
658
|
-
- http://www.amazon.com/gp/product/*
|
659
|
-
- http://www.amazon.com/o/ASIN/*
|
660
|
-
- http://www.amazon.de/*/ASIN/*
|
661
|
-
- http://www.amazon.de/*/dp/*
|
662
|
-
- http://www.amazon.de/gp/aw/d/*
|
663
|
-
- http://www.amazon.de/gp/offer-listing/*
|
664
|
-
- http://www.amazon.de/gp/product/*
|
665
|
-
- http://www.amazon.de/o/ASIN/*
|
666
|
-
- http://www.amazon.es/*/ASIN/*
|
667
|
-
- http://www.amazon.es/*/dp/*
|
668
|
-
- http://www.amazon.es/gp/aw/d/*
|
669
|
-
- http://www.amazon.es/gp/offer-listing/*
|
670
|
-
- http://www.amazon.es/gp/product/*
|
671
|
-
- http://www.amazon.es/o/ASIN/*
|
672
|
-
- http://www.amazon.fr/*/ASIN/*
|
673
|
-
- http://www.amazon.fr/*/dp/*
|
674
|
-
- http://www.amazon.fr/gp/aw/d/*
|
675
|
-
- http://www.amazon.fr/gp/offer-listing/*
|
676
|
-
- http://www.amazon.fr/gp/product/*
|
677
|
-
- http://www.amazon.fr/o/ASIN/*
|
678
|
-
- http://www.amazon.in/*/ASIN/*
|
679
|
-
- http://www.amazon.in/*/dp/*
|
680
|
-
- http://www.amazon.in/gp/aw/d/*
|
681
|
-
- http://www.amazon.in/gp/offer-listing/*
|
682
|
-
- http://www.amazon.in/gp/product/*
|
683
|
-
- http://www.amazon.in/o/ASIN/*
|
684
|
-
- http://www.amazon.it/*/ASIN/*
|
685
|
-
- http://www.amazon.it/*/dp/*
|
686
|
-
- http://www.amazon.it/gp/aw/d/*
|
687
|
-
- http://www.amazon.it/gp/offer-listing/*
|
688
|
-
- http://www.amazon.it/gp/product/*
|
689
|
-
- http://www.amazon.it/o/ASIN/*
|
690
|
-
- http://www.amzn.com/*
|
691
788
|
- http://www.aniboom.com/animation-video/*
|
692
789
|
- http://www.askmen.com/video/*
|
693
790
|
- http://www.asofterworld.com/*.jpg
|
@@ -700,7 +797,6 @@
|
|
700
797
|
- http://www.brainshark.com/*/*
|
701
798
|
- http://www.branchtrack.com/projects/*
|
702
799
|
- http://www.bravotv.com/*/*/videos/*
|
703
|
-
- http://www.break.com/*/*
|
704
800
|
- http://www.calameo.com/*
|
705
801
|
- http://www.canalplus.fr/*
|
706
802
|
- http://www.candybank.com/*
|
@@ -724,9 +820,9 @@
|
|
724
820
|
- http://www.confreaks.com/videos/*
|
725
821
|
- http://www.confreaks.net/videos/*
|
726
822
|
- http://www.dailymile.com/people/*/entries/*
|
823
|
+
- http://www.datasmoothie.com/*/*
|
727
824
|
- http://www.dnbradio.com/*
|
728
825
|
- http://www.dreambroker.com/channel/*
|
729
|
-
- http://www.etsy.com/*
|
730
826
|
- http://www.eyeem.com/a/*
|
731
827
|
- http://www.eyeem.com/p/*
|
732
828
|
- http://www.eyeem.com/u/*
|
@@ -735,9 +831,10 @@
|
|
735
831
|
- http://www.facebook.com/*/videos/*
|
736
832
|
- http://www.facebook.com/photo.php*
|
737
833
|
- http://www.facebook.com/video.php*
|
834
|
+
- http://www.figma.com/file/*
|
835
|
+
- http://www.figma.com/proto/*
|
738
836
|
- http://www.fiverr.com/*/*
|
739
837
|
- http://www.flickr.com/photos/*
|
740
|
-
- http://www.fotokritik.com/*/*
|
741
838
|
- http://www.fotopedia.com/*/*
|
742
839
|
- http://www.foursquare.com/*
|
743
840
|
- http://www.freemusicarchive.org/curator/*
|
@@ -747,9 +844,7 @@
|
|
747
844
|
- http://www.funnyordie.com/videos/*
|
748
845
|
- http://www.fwdeveryone.com/t/*
|
749
846
|
- http://www.gametrailers.com/video*
|
750
|
-
- http://www.
|
751
|
-
- http://www.gettyimages.com/detail/photo/*
|
752
|
-
- http://www.gettyimages.com/license/*
|
847
|
+
- http://www.getsportsme.com/*
|
753
848
|
- http://www.giflike.com/a/*
|
754
849
|
- http://www.globalgiving.org/funds/*
|
755
850
|
- http://www.globalgiving.org/microprojects/*
|
@@ -777,6 +872,8 @@
|
|
777
872
|
- http://www.ifood.tv/recipe/*
|
778
873
|
- http://www.ifood.tv/video/*
|
779
874
|
- http://www.ign.com/videos/*
|
875
|
+
- http://www.initialview.com/player/linkedin*
|
876
|
+
- http://www.initialview.com/player/linkedin/*
|
780
877
|
- http://www.instagram.com/p/*
|
781
878
|
- http://www.isnare.com/*
|
782
879
|
- http://www.izlesene.com/video/
|
@@ -792,7 +889,6 @@
|
|
792
889
|
- http://www.last.fm/music/+images/*
|
793
890
|
- http://www.last.fm/music/+videos/*
|
794
891
|
- http://www.liveleak.com/view?*
|
795
|
-
- http://www.livestream.com/*
|
796
892
|
- http://www.logotv.com/video/*
|
797
893
|
- http://www.lonelyplanet.com/Clip.aspx?*
|
798
894
|
- http://www.lynda.com/*
|
@@ -836,14 +932,13 @@
|
|
836
932
|
- http://www.polleverywhere.com/polls/*
|
837
933
|
- http://www.popchest.com/*/
|
838
934
|
- http://www.publons.com/author/*
|
839
|
-
- http://www.quantcast.com/*
|
840
|
-
- http://www.quantcast.com/wd:*
|
841
935
|
- http://www.questionablecontent.net/
|
842
936
|
- http://www.questionablecontent.net/comics/*.png
|
843
937
|
- http://www.questionablecontent.net/view.php*
|
844
938
|
- http://www.quora.com/*/answer/*
|
845
939
|
- http://www.qwantz.com/index.php?comic=*
|
846
940
|
- http://www.qzzr.com/quiz/*
|
941
|
+
- http://www.radiopublic.com/*
|
847
942
|
- http://www.radioreddit.com/?q=songs*
|
848
943
|
- http://www.radioreddit.com/songs*
|
849
944
|
- http://www.rdio.com/#/artist/*/album/*
|
@@ -851,7 +946,9 @@
|
|
851
946
|
- http://www.redivis.com/r/*
|
852
947
|
- http://www.redux.com/f/*/*
|
853
948
|
- http://www.redux.com/stream/item/*/*
|
949
|
+
- http://www.rekt.gg/*
|
854
950
|
- http://www.relayto.com/*
|
951
|
+
- http://www.relive.cc/view/*
|
855
952
|
- http://www.reuters.com/video/*
|
856
953
|
- http://www.rogertalk.com/*
|
857
954
|
- http://www.rts.ch/play/tv/*
|
@@ -875,6 +972,7 @@
|
|
875
972
|
- http://www.snotr.com/video/*
|
876
973
|
- http://www.socialcam.com/v/*
|
877
974
|
- http://www.sociale.co/question/*
|
975
|
+
- http://www.socialexplorer.com/*
|
878
976
|
- http://www.some.ly/*
|
879
977
|
- http://www.someecards.com/*/*
|
880
978
|
- http://www.spiegel.de/video/*
|
@@ -884,14 +982,14 @@
|
|
884
982
|
- http://www.stackshare.io/*
|
885
983
|
- http://www.streamio.com/api/v1/*
|
886
984
|
- http://www.streetfire.net/video/*.htm*
|
985
|
+
- http://www.sudomemo.net/*
|
887
986
|
- http://www.tagmotion.com/tree/*
|
888
987
|
- http://www.talkshow.im/show/*
|
889
988
|
- http://www.ted.com/index.php/talks/*.html*
|
890
989
|
- http://www.ted.com/index.php/talks/lang/*/*.html*
|
891
|
-
- http://www.ted.com/talks
|
990
|
+
- http://www.ted.com/talks/*
|
892
991
|
- http://www.ted.com/talks/*.html*
|
893
992
|
- http://www.ted.com/talks/lang/*/*.html*
|
894
|
-
- http://www.telly.com/*
|
895
993
|
- http://www.thedailyshow.com/collection/*/*/*
|
896
994
|
- http://www.thedailyshow.com/full-episodes/*
|
897
995
|
- http://www.thedailyshow.com/watch/*
|
@@ -928,12 +1026,7 @@
|
|
928
1026
|
- http://www.vol.at/video/*
|
929
1027
|
- http://www.vtility.net/virtualtour/*
|
930
1028
|
- http://www.vube.com/*/*
|
931
|
-
- http://www.vzaar.com/videos/*
|
932
|
-
- http://www.vzaar.tv/*
|
933
|
-
- http://www.washingtonpost.com/wp-dyn/*/video/*/*/*/*
|
934
1029
|
- http://www.weavly.com/watch/*
|
935
|
-
- http://www.whitehouse.gov/photos-and-video/video/*
|
936
|
-
- http://www.whitehouse.gov/video/*
|
937
1030
|
- http://www.whosay.com/*/content/*
|
938
1031
|
- http://www.whosay.com/*/photos/*
|
939
1032
|
- http://www.whosay.com/*/videos/*
|
@@ -955,6 +1048,7 @@
|
|
955
1048
|
- http://www.zie.nl/video/*
|
956
1049
|
- http://xiami.com/song/*
|
957
1050
|
- http://xkcd.com/*
|
1051
|
+
- http://xtracomedy.com/*
|
958
1052
|
- http://yahoo.com/movies/*
|
959
1053
|
- http://youtu.be/*
|
960
1054
|
- http://youtube.ca/*
|
@@ -970,6 +1064,8 @@
|
|
970
1064
|
- http://youtube.pl/*
|
971
1065
|
- http://zeit.de/video/*
|
972
1066
|
- http://zie.nl/video/*
|
1067
|
+
- http://ziggeo.io/*
|
1068
|
+
- http://zoomable.ca/*
|
973
1069
|
- https://*.23video.com/*
|
974
1070
|
- https://*.accredible.com/*
|
975
1071
|
- https://*.alpacamaps.com/*
|
@@ -979,17 +1075,18 @@
|
|
979
1075
|
- https://*.brainsonic.com/*
|
980
1076
|
- https://*.buzzsprout.com/*
|
981
1077
|
- https://*.cartodb.com/*/*
|
1078
|
+
- https://*.cdn.vooplayer.com/*
|
982
1079
|
- https://*.cincopa.com/watch/*
|
983
1080
|
- https://*.cloud.panopto.eu/*
|
1081
|
+
- https://*.embed\.fun/*
|
984
1082
|
- https://*.force.com/presentation*
|
985
1083
|
- https://*.hosted.panopto.com/*
|
986
1084
|
- https://*.iplayerhd.com/player/video/*
|
987
1085
|
- https://*.iplayerhd.com/playerframe/*
|
988
1086
|
- https://*.kaltura.com/*
|
989
|
-
- https://*.
|
990
|
-
- https://*.linkedin.com/in/*
|
991
|
-
- https://*.linkedin.com/pub/*
|
1087
|
+
- https://*.libsyn.com/*
|
992
1088
|
- https://*.looplogic.com/*
|
1089
|
+
- https://*.paperform.co/*
|
993
1090
|
- https://*.razoo.com/*
|
994
1091
|
- https://*.silk.co/explore/*
|
995
1092
|
- https://*.slideshare.net/*/*
|
@@ -998,9 +1095,11 @@
|
|
998
1095
|
- https://*.staging.panopto.com/*
|
999
1096
|
- https://*.stream.co.jp/apiservice/*
|
1000
1097
|
- https://*.stream.ne.jp/apiservice/*
|
1098
|
+
- https://*.tiktok.com/*
|
1001
1099
|
- https://*.tumblr.com/post/*
|
1002
1100
|
- https://*.twentythree.net/*
|
1003
1101
|
- https://*.twitch.tv/*
|
1102
|
+
- https://*.typeform.com/*
|
1004
1103
|
- https://*.uplabs.com/posts/*
|
1005
1104
|
- https://*.videomarketingplatform.co/*
|
1006
1105
|
- https://*.vids.io/videos/*
|
@@ -1015,8 +1114,14 @@
|
|
1015
1114
|
- https://*meetup.com/*
|
1016
1115
|
- https://*vidyard.com/*
|
1017
1116
|
- https://*youtube.com/watch*
|
1117
|
+
- https://23degrees.io/*
|
1018
1118
|
- https://23video.com/*
|
1119
|
+
- https://360stories.com/*
|
1120
|
+
- https://3d.cappasity.com/u/*
|
1121
|
+
- https://3dcrafts.co.kr/*
|
1122
|
+
- https://3dcrafts.net/*
|
1019
1123
|
- https://60db.co/story/*
|
1124
|
+
- https://a.fsbl.io/*
|
1020
1125
|
- https://abcnews.com/*/video/*
|
1021
1126
|
- https://abcnews.com/video/playerIndex*
|
1022
1127
|
- https://abcnews.com/video/playerIndex*
|
@@ -1025,25 +1130,58 @@
|
|
1025
1130
|
- https://abcnews.go.com/video/playerIndex*
|
1026
1131
|
- https://abcnews.go.com/video/playerIndex*
|
1027
1132
|
- https://accredible.com/*
|
1133
|
+
- https://acebot.ai/*
|
1134
|
+
- https://acehiphop.com/*
|
1135
|
+
- https://adorilabs.com/*
|
1136
|
+
- https://adpaths.com/*
|
1028
1137
|
- https://airtable.com/shr*
|
1138
|
+
- https://allears.cc/*
|
1029
1139
|
- https://allihoopa.com/s/*
|
1030
1140
|
- https://alpha.vrchive.com/*
|
1031
1141
|
- https://alugha.com/videos/*
|
1032
1142
|
- https://anchor.fm/*
|
1033
1143
|
- https://animoto.com/play/*
|
1144
|
+
- https://apester.com/*
|
1145
|
+
- https://api.bangbang.do/*
|
1034
1146
|
- https://api.lovelive.tv/v1/*
|
1035
1147
|
- https://api.peptone.io/v1/visualize/*
|
1148
|
+
- https://app.badpanda.gg/*
|
1036
1149
|
- https://app.devhv.com/oembed/*
|
1037
1150
|
- https://app.ilosvideos.com/view/*
|
1151
|
+
- https://app.queezly.com/*
|
1038
1152
|
- https://app.stghv.com/*
|
1153
|
+
- https://app.swurveys.com/api/swurveys/*/opengraph
|
1039
1154
|
- https://app.very.gd/p/*
|
1040
1155
|
- https://app.videocheckout.com/embed/*
|
1041
1156
|
- https://app.wistia.com/embed/medias/*
|
1042
1157
|
- https://app.wizer.me/learn/*
|
1043
1158
|
- https://app.wizer.me/preview/*
|
1159
|
+
- https://appfollow.io/*
|
1160
|
+
- https://archivos.digital/*
|
1161
|
+
- https://are.na/*
|
1044
1162
|
- https://art19.com/shows/*/episodes/*
|
1163
|
+
- https://article.voxsnap.com/*
|
1164
|
+
- https://askwhale.com/q/*
|
1165
|
+
- https://athenascope.com/*
|
1045
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/*
|
1046
1180
|
- https://blab.im/*
|
1181
|
+
- https://blogcast.host/*
|
1182
|
+
- https://blogsend.io/*
|
1183
|
+
- https://blueprintue.com/*
|
1184
|
+
- https://bootkik.com/*
|
1047
1185
|
- https://bop.fm/a/*
|
1048
1186
|
- https://bop.fm/p/*
|
1049
1187
|
- https://bop.fm/s/*/*
|
@@ -1052,18 +1190,35 @@
|
|
1052
1190
|
- https://braid.io/embed-tile/*
|
1053
1191
|
- https://brainshark.com/*/*
|
1054
1192
|
- https://brainsonic.com/*
|
1193
|
+
- https://buk.io/*
|
1055
1194
|
- https://bumpers.fm/e/*
|
1195
|
+
- https://buncee.com/*
|
1056
1196
|
- https://bunkrapp.com/*/*
|
1197
|
+
- https://buttondown.email/*
|
1198
|
+
- https://buyte.co/embed*
|
1057
1199
|
- https://buzzsprout.com/*
|
1200
|
+
- https://cadence13.com/*
|
1058
1201
|
- https://calameo.com/*
|
1202
|
+
- https://calconic.com/*
|
1059
1203
|
- https://campaign.theheartstringsproject.com/*
|
1204
|
+
- https://captur3d.io/*
|
1205
|
+
- https://carbon.now.sh/*
|
1206
|
+
- https://cards.heeyy.com/*
|
1060
1207
|
- https://cayke.co/*
|
1061
1208
|
- https://cbsnews.com/video/watch/*
|
1062
1209
|
- https://cdn.knightlab.com/libs/juxtapose/*
|
1063
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/*
|
1064
1215
|
- https://chew.tv/*/*
|
1065
1216
|
- https://chirb.it/*
|
1066
1217
|
- https://cincopa.com/~*
|
1218
|
+
- https://cinema8.com/*
|
1219
|
+
- https://cinnamon.video/*
|
1220
|
+
- https://cl.ly.com/*
|
1221
|
+
- https://clay.run/*
|
1067
1222
|
- https://clippituser.tv/*
|
1068
1223
|
- https://clipter.com/c/*
|
1069
1224
|
- https://cloudup.com/*
|
@@ -1073,82 +1228,174 @@
|
|
1073
1228
|
- https://cnbc.com/id/*/play/1/video/*
|
1074
1229
|
- https://cnbc.com/id/*?*video*
|
1075
1230
|
- https://cnn.it/*
|
1231
|
+
- https://codeembed.dev/*
|
1232
|
+
- https://codegenerators.io/*
|
1233
|
+
- https://codeocean.com/*
|
1076
1234
|
- https://codepicnic.com/bites/*
|
1077
1235
|
- https://codepicnic.com/consoles/*
|
1236
|
+
- https://codeprism.co/*
|
1078
1237
|
- https://codiva.io/p/*
|
1238
|
+
- https://cohe.se/*
|
1239
|
+
- https://collect.chat/*
|
1240
|
+
- https://commaful.com/*
|
1079
1241
|
- https://content.newsbound.com/*/*
|
1080
1242
|
- https://content.streamonecloud.net/embed/*
|
1081
|
-
- https://contentupgrade.me/*
|
1082
1243
|
- https://cooler.tv/*
|
1083
1244
|
- https://coub.com/embed/*
|
1084
1245
|
- https://coub.com/view/*
|
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/*
|
1085
1252
|
- https://datawrapper.dwcdn.net/*
|
1086
|
-
- https://
|
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/*
|
1087
1260
|
- https://dreambroker.com/channel/*
|
1261
|
+
- https://dtsgr.com/*
|
1088
1262
|
- https://edition.cnn.com/video/*
|
1089
1263
|
- https://edition.cnn.com/videos/*
|
1264
|
+
- https://edocr.com/*
|
1265
|
+
- https://elementari.io/*
|
1090
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/*
|
1091
1279
|
- https://esplor.io/*
|
1092
|
-
- https://
|
1280
|
+
- https://ethfiddle.com/*
|
1281
|
+
- https://exif.co/*/i/*
|
1093
1282
|
- https://exploratory.io/viz/*
|
1094
1283
|
- https://eyrie.io/*
|
1284
|
+
- https://facer.io/*
|
1285
|
+
- https://factsumo.com/*
|
1095
1286
|
- https://fb.me/*
|
1287
|
+
- https://firstory.me/*
|
1288
|
+
- https://flexvid.io/*
|
1096
1289
|
- https://flic.kr/*
|
1290
|
+
- https://flipnot.es/*
|
1291
|
+
- https://flixel.com/*
|
1292
|
+
- https://flourish.studio/*
|
1097
1293
|
- https://flowvella.com/s/*
|
1294
|
+
- https://fontself.com/*
|
1295
|
+
- https://footpathapp.com/*
|
1098
1296
|
- https://forge.gg/*
|
1297
|
+
- https://form.jotform.com/*
|
1298
|
+
- https://formula-embed.appspot.com/*
|
1099
1299
|
- https://foursquare.com/*
|
1100
1300
|
- https://fr.peoplbrain.com/tutoriaux/*
|
1101
1301
|
- https://fraim.com/player/*
|
1102
1302
|
- https://frontback.me/p/*
|
1103
1303
|
- https://futurism.com/images/*
|
1104
1304
|
- https://fwdeveryone.com/t/*
|
1305
|
+
- https://gametakes.com/*
|
1105
1306
|
- https://ganxy.com/*
|
1307
|
+
- https://genesisplayer.io/*
|
1308
|
+
- https://genius.com/videos/*
|
1106
1309
|
- https://getclippy.co/p/*
|
1310
|
+
- https://getcloudapp.com/*
|
1311
|
+
- https://getfader.com/*
|
1312
|
+
- https://getshuffle.app/*
|
1313
|
+
- https://getsportsme.com/*
|
1107
1314
|
- https://gfycat.com/*
|
1315
|
+
- https://gif-vif.com/*
|
1108
1316
|
- https://gifs.com/*
|
1109
1317
|
- https://gifs.com/gif/*
|
1318
|
+
- https://gifyourgame.com/*
|
1319
|
+
- https://giphy.com/gifs/*
|
1110
1320
|
- https://gist.github.com/*
|
1321
|
+
- https://gitpitch.com/*/*
|
1322
|
+
- https://glitch.com/*
|
1111
1323
|
- https://glitter.club/*
|
1324
|
+
- https://go.vooozer.com/*
|
1325
|
+
- https://goabstract.com/*
|
1326
|
+
- https://goodworld.me/*
|
1112
1327
|
- https://google.*/maps/*
|
1328
|
+
- https://goplayalong.com/*
|
1329
|
+
- https://gosynth.com/*
|
1330
|
+
- https://gph.is/*
|
1331
|
+
- https://grain.co/*
|
1113
1332
|
- https://graphcommons.com/graphs/*
|
1114
1333
|
- https://graphcommons.com/nodes/*
|
1115
1334
|
- https://graphiq.com/w/*
|
1116
|
-
- https://
|
1335
|
+
- https://greetor.com/*
|
1336
|
+
- https://gridble.io/*
|
1117
1337
|
- https://guardian.co.uk/*/video/*/*/*/*
|
1338
|
+
- https://guilded.gg/*
|
1118
1339
|
- https://hapyak.com/embed/*
|
1119
1340
|
- https://hardbound.co/*/*/*
|
1341
|
+
- https://hatchxr.com/*
|
1342
|
+
- https://herth.co/*
|
1343
|
+
- https://heytwist.com/*
|
1344
|
+
- https://hopbucket.com/plan-details/*
|
1120
1345
|
- https://huzza.io/*/live-stream/*
|
1346
|
+
- https://icloud.com/keynote/*
|
1121
1347
|
- https://ifttt.com/recipes/*
|
1348
|
+
- https://iheart.com/*
|
1122
1349
|
- https://iloopit.net/*/*
|
1123
|
-
- https://
|
1124
|
-
- 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/*
|
1125
1357
|
- https://ipushpull.com/pages/domains/*/pages/*
|
1126
1358
|
- https://issuu.com/*/docs/*
|
1127
1359
|
- https://it.youtube.com/*
|
1360
|
+
- https://itemsy.com/*
|
1361
|
+
- https://itslit.com/*
|
1362
|
+
- https://jovian.ml/*
|
1363
|
+
- https://jscomplete.com/*
|
1364
|
+
- https://jsitor.com/*
|
1128
1365
|
- https://khanacademy.org/*
|
1129
1366
|
- https://kidoju.com/*
|
1130
1367
|
- https://kit.com
|
1368
|
+
- https://kralify.com/watch*
|
1369
|
+
- https://kyso.io/*
|
1370
|
+
- https://launch.newsinc.com/*
|
1131
1371
|
- https://lcontacts.herokuapp.com/embed/button/*
|
1132
|
-
- https://
|
1133
|
-
- https://
|
1134
|
-
- https://
|
1135
|
-
- https://
|
1372
|
+
- https://lean-data-science.com/*
|
1373
|
+
- https://like.co/*
|
1374
|
+
- https://listennotes.com/*
|
1375
|
+
- https://listle.io/*
|
1136
1376
|
- https://live.huffingtonpost.com/r/segment/*/*
|
1137
|
-
- https://
|
1377
|
+
- https://livestream.com/*
|
1378
|
+
- https://ludus.one/*
|
1138
1379
|
- https://lynda.com/*
|
1139
1380
|
- https://lynda.com/*
|
1140
1381
|
- https://magisto.com/*
|
1382
|
+
- https://makecode.com/*
|
1383
|
+
- https://makecode.com/*
|
1141
1384
|
- https://maphubs.com/user/*/map/*
|
1142
1385
|
- https://maps.google.com/?*
|
1143
1386
|
- https://maps.google.com/maps/ms?*
|
1144
1387
|
- https://maps.google.com/maps?*
|
1145
1388
|
- https://maps.mysidewalk.com/*
|
1146
1389
|
- https://marvelapp.com/*
|
1147
|
-
- https://
|
1390
|
+
- https://medal.tv/*
|
1391
|
+
- https://media.giphy.com/media/*
|
1148
1392
|
- https://medibang.com/sv/*
|
1393
|
+
- https://meedle.io/*
|
1149
1394
|
- https://meetu.ps/*
|
1395
|
+
- https://megaphone.fm/*
|
1150
1396
|
- https://megavisor.com/en/view/*
|
1151
1397
|
- https://megavisor.com/view/*
|
1398
|
+
- https://millioneyez.com/*
|
1152
1399
|
- https://minko.io/s/
|
1153
1400
|
- https://mix.office.com/MyMixes/Details/*
|
1154
1401
|
- https://mix.office.com/embed/*
|
@@ -1156,79 +1403,155 @@
|
|
1156
1403
|
- https://mix.office.com/watch/*
|
1157
1404
|
- https://mixbit.com/v/*
|
1158
1405
|
- https://momento360.com/e/u/*
|
1406
|
+
- https://momento360.com/e/uc/*
|
1159
1407
|
- https://money.cnn.com/video/*
|
1160
1408
|
- https://money.cnn.com/videos/*
|
1409
|
+
- https://moveshelf.com/*
|
1410
|
+
- https://mpembed.com/*
|
1161
1411
|
- https://msn.foxsports.com/video*
|
1162
1412
|
- https://msnbc.msn.com/*/watch/*
|
1163
1413
|
- https://multimedia.foxsports.com/m/video/*/*
|
1414
|
+
- https://muralapp.io/*
|
1164
1415
|
- https://my.matterport.com/show/*
|
1416
|
+
- https://my.panomoments.com/*
|
1165
1417
|
- https://my.storygami.com/video/*
|
1166
1418
|
- https://my.webboards.fr/*
|
1167
1419
|
- https://mybeweeg.com/w/*
|
1420
|
+
- https://mymixtapez.com/*
|
1421
|
+
- https://myvideoplace.tv/*
|
1422
|
+
- https://namchey.com/*
|
1423
|
+
- https://naturalatlas.com/*
|
1168
1424
|
- https://nbcnews.com/*
|
1425
|
+
- https://neatclip.com/*
|
1169
1426
|
- https://newhive.com/*/*
|
1170
1427
|
- https://newhive.com/*/*
|
1428
|
+
- https://nodalview.com/*
|
1171
1429
|
- https://nom.com/post/*
|
1430
|
+
- https://npmcharts.com/*
|
1431
|
+
- https://nr8.com/embed/*
|
1432
|
+
- https://nuggetcharts.com/*
|
1172
1433
|
- https://oddshot.tv/*
|
1434
|
+
- https://odiocast.com/*
|
1435
|
+
- https://oice.com/*
|
1436
|
+
- https://okluffa.com/*
|
1437
|
+
- https://omniscope.me/*
|
1438
|
+
- https://omny.fm/*
|
1173
1439
|
- https://open.spotify.com/*
|
1440
|
+
- https://openings.moe/*
|
1441
|
+
- https://openprocessing.org/*
|
1174
1442
|
- https://orbitvu.com/001/*
|
1175
1443
|
- https://oumy.com/v/*
|
1444
|
+
- https://overflow.io/*
|
1445
|
+
- https://parkfy.com/*
|
1446
|
+
- https://pasteapp.com/*
|
1176
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/*
|
1177
1453
|
- https://platform.vixyvideo.com/*
|
1178
1454
|
- https://platform.vixyvideo.com/*
|
1455
|
+
- https://play.buto.tv/*
|
1456
|
+
- https://play.kotlinlang.org/embed#*
|
1179
1457
|
- https://play.radiopublic.com/*
|
1180
1458
|
- https://play.soundsgood.co/*
|
1181
1459
|
- https://play.spotify.com/*
|
1460
|
+
- https://player.entrypoint.live/*
|
1182
1461
|
- https://player.megaphone.fm/*
|
1183
1462
|
- https://player.videopath.com/*
|
1184
1463
|
- https://player.vimeo.com/*
|
1185
1464
|
- https://players.brightcove.net/*
|
1186
|
-
- https://
|
1465
|
+
- https://playpost.app/*
|
1466
|
+
- https://plays.tv/*/*
|
1467
|
+
- https://plnkr.co/*
|
1468
|
+
- https://plnkr.co/*
|
1469
|
+
- https://plotly.com/*
|
1187
1470
|
- https://plus.google.com/*
|
1471
|
+
- https://polarishare.com/*
|
1188
1472
|
- https://polaroidswing.com/p/*
|
1189
|
-
- https://
|
1190
|
-
- https://
|
1473
|
+
- https://pollforall.com/*
|
1474
|
+
- https://pollsify.com/*
|
1475
|
+
- https://pollstar.com/*
|
1191
1476
|
- https://popchest.com/*/
|
1477
|
+
- https://portal.paratii.video/*
|
1478
|
+
- https://posixion.com/*
|
1192
1479
|
- https://powered.by.rabbut.com/p/*
|
1480
|
+
- https://pressekompass.net/*
|
1481
|
+
- https://prezi.com/*/*
|
1482
|
+
- https://procfu.com/*
|
1193
1483
|
- https://producthunt.com/*
|
1194
|
-
- https://projects.invisionapp.com/share/*
|
1195
1484
|
- https://public.chartblocks.com/c/*
|
1196
1485
|
- https://publicgood.com/campaign/*
|
1197
1486
|
- https://publicgood.com/org/*
|
1198
1487
|
- https://publicgood.com/org/*/campaign/*
|
1488
|
+
- https://publicinput.com/*
|
1489
|
+
- https://publish.viostream.com/play/*
|
1490
|
+
- https://publit.io/*
|
1199
1491
|
- https://publons.com/author/*
|
1492
|
+
- https://pulse.qa/*
|
1200
1493
|
- https://qanda.co/q/*
|
1494
|
+
- https://quantum-circuit.com/*
|
1495
|
+
- https://qumucloud.com/*
|
1201
1496
|
- https://quora.com/*/answer/*
|
1202
1497
|
- https://qwip.in/watch/*
|
1203
1498
|
- https://qwip.it/watch/*
|
1499
|
+
- https://radiopublic.com/*
|
1204
1500
|
- https://rapidengage.com/s/*
|
1501
|
+
- https://rave.dj/*
|
1502
|
+
- https://reading.fm/*
|
1205
1503
|
- https://readtapestry.com/s/*/
|
1206
1504
|
- https://redivis.com/r/*
|
1207
1505
|
- https://reelhouse.org/*
|
1506
|
+
- https://registry.bitmark.com/*
|
1507
|
+
- https://rekt.gg/*
|
1208
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/*
|
1209
1514
|
- https://reuters.com/video/*
|
1210
1515
|
- https://riffsy.com/*
|
1211
1516
|
- https://rocketium.com/*
|
1212
1517
|
- https://rogertalk.com/*
|
1518
|
+
- https://roshiclips.com/watch*
|
1519
|
+
- https://rumble.com/*
|
1213
1520
|
- https://runelm.io/*/*
|
1521
|
+
- https://runkit.com/*
|
1522
|
+
- https://scalafiddle.io/*
|
1523
|
+
- https://scapic.com/*
|
1524
|
+
- https://scorebat.com/*
|
1214
1525
|
- https://screen.yahoo.com/*/*
|
1215
1526
|
- https://screenhunters.com/*
|
1216
1527
|
- https://scribblemaps.com/maps/view/*/*
|
1217
1528
|
- https://scribd.com/doc/*
|
1218
1529
|
- https://scribd.com/documents/*
|
1219
1530
|
- https://scribd.com/mobile/documents/*
|
1531
|
+
- https://scrimba.com/*
|
1532
|
+
- https://searchie.io/*
|
1533
|
+
- https://secure.plays.tv/*/*
|
1534
|
+
- https://seekbeak.com/v/*
|
1220
1535
|
- https://sendvid.com/*
|
1536
|
+
- https://serenader.io/*
|
1221
1537
|
- https://services.momindum.com/embedly/*
|
1222
1538
|
- https://sfx.io/*
|
1539
|
+
- https://sheetsu.com/tables/*
|
1223
1540
|
- https://sidewire.com/*/*/*
|
1541
|
+
- https://simmer.io/*/*
|
1224
1542
|
- https://sketchfab.com/models/*
|
1225
1543
|
- https://sketchfab.com/show/*
|
1226
1544
|
- https://skip.st/one/*
|
1227
|
-
- https://skitch.com/*/*/*
|
1228
1545
|
- https://sleeperbot.com/share/*
|
1229
1546
|
- https://slidesha.re/*
|
1547
|
+
- https://slidetosubscribe.com/*
|
1230
1548
|
- https://slidr.io/*/*
|
1549
|
+
- https://snack.expo.io/*
|
1231
1550
|
- https://snappd\.tv/*
|
1551
|
+
- https://snipaclip.com/*
|
1552
|
+
- https://snipit.io/*
|
1553
|
+
- https://socialexplorer.com/*
|
1554
|
+
- https://song.link/*
|
1232
1555
|
- https://soundcloud.com/*
|
1233
1556
|
- https://soundcloud.com/*/*
|
1234
1557
|
- https://soundcloud.com/*/sets/*
|
@@ -1236,21 +1559,49 @@
|
|
1236
1559
|
- https://spaces.archilogic.com/3d/*
|
1237
1560
|
- https://spaces.archilogic.com/model/*
|
1238
1561
|
- https://speakerdeck.com/*/*
|
1562
|
+
- https://speakytext.com/*
|
1563
|
+
- https://sphereplay.com/*
|
1239
1564
|
- https://spiegel.de/video/*
|
1565
|
+
- https://spkt.io/*
|
1566
|
+
- https://spott.tv/*
|
1567
|
+
- https://spreaker.com/*
|
1240
1568
|
- https://sproutvideo.com/videos/*
|
1569
|
+
- https://stackblitz.com/*
|
1570
|
+
- https://stagevids.com/watch*
|
1571
|
+
- https://stanza.co/*
|
1241
1572
|
- https://stepic.org/*
|
1242
|
-
- https://
|
1573
|
+
- https://stonly.com/*
|
1574
|
+
- https://store.pixdor.com/*
|
1575
|
+
- https://storeo.io/*
|
1576
|
+
- https://stories.nws.ai/*
|
1243
1577
|
- https://storribook.com/articles/view/*/*
|
1578
|
+
- https://storyforj.com/*
|
1244
1579
|
- https://storygami.com/v/*
|
1580
|
+
- https://storymaps.arcgis.com/stories/*
|
1245
1581
|
- https://streamable.com/*
|
1246
1582
|
- https://streamio.com/api/v1/*
|
1583
|
+
- https://streamr.network/*
|
1584
|
+
- https://sudomemo.net/*
|
1247
1585
|
- https://superstack.io/v/*
|
1248
|
-
- https://
|
1586
|
+
- https://supgif.com/*
|
1587
|
+
- https://svrf.com/*
|
1588
|
+
- https://sway.office.com/*
|
1589
|
+
- https://swiftsnip.com/*
|
1590
|
+
- https://swymrelay.com/*
|
1249
1591
|
- https://talkshow.im/show/*
|
1592
|
+
- https://tambur.co/*
|
1250
1593
|
- https://tapewrite.com/*
|
1594
|
+
- https://tech.io/snippet/*
|
1251
1595
|
- https://tenor.co/*
|
1596
|
+
- https://tenor.com/*
|
1597
|
+
- https://terminaid.com/*
|
1598
|
+
- https://texblocks.com/*
|
1252
1599
|
- https://theguardian.com/*/video/*/*/*/*
|
1253
1600
|
- https://theonion.com/video/*
|
1601
|
+
- https://thesportsme.com/*
|
1602
|
+
- https://thinglink.com/*
|
1603
|
+
- https://threesixty.tours/*
|
1604
|
+
- https://tiktok.com/*
|
1254
1605
|
- https://today.msnbc.msn.com/id/*/ns/*
|
1255
1606
|
- https://today.msnbc.msn.com/id/*/vp/*
|
1256
1607
|
- https://tr.instela.com/*
|
@@ -1258,11 +1609,18 @@
|
|
1258
1609
|
- https://tun.in/*
|
1259
1610
|
- https://tunein.com/*
|
1260
1611
|
- https://twitch.tv/*
|
1612
|
+
- https://typecast.ai/*
|
1613
|
+
- https://uilicious.com/*
|
1261
1614
|
- https://uploadly.com/*
|
1262
1615
|
- https://upscri.be/*
|
1263
1616
|
- https://urtak.com/clr/*
|
1264
1617
|
- https://urtak.com/u/*
|
1618
|
+
- https://usehappen.com/*
|
1619
|
+
- https://useloom.com/share/*
|
1265
1620
|
- https://v.embedly.com/*
|
1621
|
+
- https://vectary.com/*
|
1622
|
+
- https://vectorlogo.zone/*
|
1623
|
+
- https://verasity.io/player*
|
1266
1624
|
- https://verse.com/stories/*
|
1267
1625
|
- https://vid.me/*
|
1268
1626
|
- https://vidd.me/*
|
@@ -1271,23 +1629,45 @@
|
|
1271
1629
|
- https://video.foxbusiness.com/v/*
|
1272
1630
|
- https://video.foxnews.com/v/*
|
1273
1631
|
- https://video214.com/play/*
|
1632
|
+
- https://vidgrid.com/*
|
1274
1633
|
- https://vidl.it/*
|
1634
|
+
- https://view.genial.ly/*
|
1275
1635
|
- https://view.stacker.cc/*
|
1636
|
+
- https://viewer.archilogic.com/*http://spaces.archilogic.com/3d/*
|
1276
1637
|
- https://vilynx.com/video/*
|
1277
1638
|
- https://vimeo.com/*
|
1639
|
+
- https://vimsical.com/vims/*
|
1278
1640
|
- https://vine.co/v/*
|
1279
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/*
|
1280
1647
|
- https://vrbfoto.com/f/*
|
1281
1648
|
- https://vrchive.com/*
|
1649
|
+
- https://vysda.com/*
|
1282
1650
|
- https://w.graphiq.com/w/*
|
1283
1651
|
- https://walkinto.in/*/*
|
1284
|
-
- https://
|
1652
|
+
- https://webassembly.studio/*
|
1653
|
+
- https://websitevoice.com/*
|
1654
|
+
- https://wedonthavetime.org/*
|
1655
|
+
- https://weekendsuperheroes.com/*
|
1656
|
+
- https://whooshkaa.com/*
|
1285
1657
|
- https://wi.st/*
|
1658
|
+
- https://widgetic.com/*
|
1659
|
+
- https://widgets.feedbeaver.com/*
|
1286
1660
|
- https://wistia.com/*
|
1287
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/*
|
1288
1667
|
- https://www.allego.com/*
|
1289
1668
|
- https://www.altizure.com/project/*
|
1290
1669
|
- https://www.alugha.com/videos/*
|
1670
|
+
- https://www.askwhale.com/q/*
|
1291
1671
|
- https://www.boston.com/*video*
|
1292
1672
|
- https://www.boston.com/video*
|
1293
1673
|
- https://www.braid.io/embed-tile/*
|
@@ -1303,24 +1683,25 @@
|
|
1303
1683
|
- https://www.cnn.com/videos/*
|
1304
1684
|
- https://www.cnn.com/videos/*
|
1305
1685
|
- https://www.codiva.io/p/*
|
1686
|
+
- https://www.datasmoothie.com/*/*
|
1687
|
+
- https://www.dnbradio.com/*
|
1306
1688
|
- https://www.dreambroker.com/channel/*
|
1307
|
-
- https://www.
|
1689
|
+
- https://www.exif.co/*/i/*
|
1308
1690
|
- https://www.facebook.com/*/photos/*
|
1309
1691
|
- https://www.facebook.com/*/posts/*
|
1310
1692
|
- https://www.facebook.com/*/videos/*
|
1311
1693
|
- https://www.facebook.com/events/*
|
1312
1694
|
- https://www.facebook.com/photo.php*
|
1313
1695
|
- https://www.facebook.com/video.php*
|
1696
|
+
- https://www.figma.com/file/*
|
1697
|
+
- https://www.figma.com/proto/*
|
1314
1698
|
- https://www.flat.io/score/*
|
1315
1699
|
- https://www.flickr.com/photos/*
|
1316
1700
|
- https://www.foursquare.com/*
|
1317
1701
|
- https://www.frontback.me/p/*
|
1318
1702
|
- https://www.fwdeveryone.com/t/*
|
1319
1703
|
- https://www.ganxy.com/*
|
1320
|
-
- https://www.
|
1321
|
-
- https://www.gettyimages.com/detail/photo/*
|
1322
|
-
- https://www.gettyimages.com/license/*
|
1323
|
-
- https://www.getwhichit.com/page/*
|
1704
|
+
- https://www.getsportsme.com/*
|
1324
1705
|
- https://www.gifs.com/*
|
1325
1706
|
- https://www.gifs.com/gif/*
|
1326
1707
|
- https://www.globalgiving.org/funds/*
|
@@ -1332,7 +1713,9 @@
|
|
1332
1713
|
- https://www.guardian.co.uk/*/video/*/*/*/*
|
1333
1714
|
- https://www.hapyak.com/embed/*
|
1334
1715
|
- https://www.highly.co/hl/*
|
1716
|
+
- https://www.icloud.com/keynote/*
|
1335
1717
|
- https://www.instagram.com/p/*
|
1718
|
+
- https://www.iorad.com/player/*
|
1336
1719
|
- https://www.ipushpull.com/pages/domains/*/pages/*
|
1337
1720
|
- https://www.jauntvr.com/title/*
|
1338
1721
|
- https://www.khanacademy.org/*
|
@@ -1366,11 +1749,14 @@
|
|
1366
1749
|
- https://www.publons.com/author/*
|
1367
1750
|
- https://www.quora.com/*/answer/*
|
1368
1751
|
- https://www.qzzr.com/quiz/*
|
1752
|
+
- https://www.radiopublic.com/*
|
1369
1753
|
- https://www.rdio.com/#/artist/*/album/*
|
1370
1754
|
- https://www.rdio.com/artist/*/album/*
|
1371
1755
|
- https://www.redivis.com/r/*
|
1372
1756
|
- https://www.reelhouse.org/*
|
1757
|
+
- https://www.rekt.gg/*
|
1373
1758
|
- https://www.relayto.com/*
|
1759
|
+
- https://www.relive.cc/view/*
|
1374
1760
|
- https://www.reuters.com/video/*
|
1375
1761
|
- https://www.rogertalk.com/*
|
1376
1762
|
- https://www.scribblemaps.com/maps/view/*/*
|
@@ -1381,9 +1767,16 @@
|
|
1381
1767
|
- https://www.slideshare.net/*/*
|
1382
1768
|
- https://www.slideshare.net/mobile/*/*
|
1383
1769
|
- https://www.sociale.co/question/*
|
1770
|
+
- https://www.socialexplorer.com/*
|
1384
1771
|
- https://www.spiegel.de/video/*
|
1385
1772
|
- https://www.streamio.com/api/v1/*
|
1773
|
+
- https://www.sudomemo.net/*
|
1386
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*
|
1387
1780
|
- https://www.theguardian.com/*/video/*/*/*/*
|
1388
1781
|
- https://www.theonion.com/video/*
|
1389
1782
|
- https://www.vevo.com/video/*
|
@@ -1393,7 +1786,6 @@
|
|
1393
1786
|
- https://www.vimeo.com/*
|
1394
1787
|
- https://www.vine.co/v/*
|
1395
1788
|
- https://www.vizamp.com/player/*
|
1396
|
-
- https://www.washingtonpost.com/wp-dyn/*/video/*/*/*/*
|
1397
1789
|
- https://www.wedgies.com/question/*
|
1398
1790
|
- https://www.wikimedia.org/wiki/File*
|
1399
1791
|
- https://www.wikipedia.org/wiki/*
|
@@ -1402,6 +1794,7 @@
|
|
1402
1794
|
- https://www.youtube.com/embed/*
|
1403
1795
|
- https://www.youtube.com/gif*
|
1404
1796
|
- https://www.zeit.de/video/*
|
1797
|
+
- https://xtracomedy.com/*
|
1405
1798
|
- https://yahoo.com/movies/*
|
1406
1799
|
- https://youtu.be/*
|
1407
1800
|
- https://youtube.ca/*
|
@@ -1416,6 +1809,7 @@
|
|
1416
1809
|
- https://youtube.nl/*
|
1417
1810
|
- https://youtube.pl/*
|
1418
1811
|
- https://zeit.de/video/*
|
1812
|
+
- https://ziggeo.io/*
|
1813
|
+
- https://zoomable.ca/*
|
1419
1814
|
- https?://embed.ly/code*
|
1420
|
-
- https?://infogr.am/*
|
1421
1815
|
- https?://kuula.co/post/*
|