forked from leftypol/leftypol
Automatically embeds with tor if on the hidden site. Adds clearnet invidious embed. (untested).
This commit is contained in:
parent
6f47518ae9
commit
d7248c357d
1 changed files with 22 additions and 5 deletions
|
@ -26,15 +26,21 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
const ON = "[Remove]";
|
const ON = "[Remove]";
|
||||||
const OFF = "[Embed]";
|
const OFF = "[Embed]";
|
||||||
|
const YOUTUBE = 'www.youtube.com';
|
||||||
|
const ONION = 'tuberyps2pn6dor6h47brof3w2asmauahhk4ei42krugybzzzo55klad.onion';
|
||||||
|
const PROXY = 'incogtube.com'
|
||||||
function addEmbedButton(index, videoNode) {
|
function addEmbedButton(index, videoNode) {
|
||||||
videoNode = $(videoNode);
|
videoNode = $(videoNode);
|
||||||
var contents = videoNode.contents();
|
var contents = videoNode.contents();
|
||||||
var videoId = videoNode.data('video');
|
var videoId = videoNode.data('video');
|
||||||
var span = $("<span>[Embed]</span>");
|
var span = $("<span>[Embed]</span>");
|
||||||
var embedNode = $('<iframe style="float:left;margin: 10px 20px" type="text/html" '+
|
var spanProxy = $("<span>[Proxy]</span>");
|
||||||
'width="360" height="270" src="//www.youtube.com/embed/' + videoId +
|
var defaultEmbed = location.hostname.includes("onion") ? ONION : YOUTUBE;
|
||||||
|
var embedNode = function(embedHost) {
|
||||||
|
$('<iframe style="float:left;margin: 10px 20px" type="text/html" '+
|
||||||
|
'width="360" height="270" src="//' + embedHost + '/embed/' + videoId +
|
||||||
'?autoplay=1&html5=1" allowfullscreen frameborder="0"/>');
|
'?autoplay=1&html5=1" allowfullscreen frameborder="0"/>');
|
||||||
|
}
|
||||||
videoNode.click(function(e) {
|
videoNode.click(function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
|
@ -42,14 +48,25 @@ $(document).ready(function(){
|
||||||
videoNode.append(contents);
|
videoNode.append(contents);
|
||||||
embedNode.remove();
|
embedNode.remove();
|
||||||
span.text(OFF);
|
span.text(OFF);
|
||||||
|
spanProxy.hidden = false;
|
||||||
} else{
|
} else{
|
||||||
contents.detach();
|
contents.detach();
|
||||||
videoNode.append(embedNode);
|
videoNode.append(embedNode(defaultEmbed));
|
||||||
span.text(ON);
|
span.text(ON);
|
||||||
|
spanProxy.hidden = true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
spanProxy.click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
contents.detach();
|
||||||
|
videoNode.append(embedNode(PROXY));
|
||||||
|
span.text(ON);
|
||||||
|
spanProxy.hidden = true;
|
||||||
|
});
|
||||||
|
|
||||||
videoNode.append(span);
|
videoNode.append(span);
|
||||||
|
videoNode.append(spanProxy);
|
||||||
}
|
}
|
||||||
|
|
||||||
$('div.video-container', document).each(addEmbedButton);
|
$('div.video-container', document).each(addEmbedButton);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue