Youtube Unblocker

Automatically forwards country-blocked YouTube videos to clipzag.com and unblocks the video.

< Spätná väzba na Youtube Unblocker

Otázka/komentár

§
Pridaný: 01.09.2017
Upravený: 01.09.2017

Update for New YT Design

Script is not working on the new YT design. A potential fix for this might be:

setTimeout(function() {
var player = document.getElementsByTagName('ytd-watch');
for (var i = 0; i < player.length; ++i) {
if (player[i].getAttribute('player-unavailable') === "") {
location.assign('https://eachvideo.com/watch' + location.search);
}
}
},1200);

This also does not require the jquery library in the metadata.

Thanks!

drhouseAutor
§
Pridaný: 01.09.2017
Upravený: 02.09.2017

hey, thx for the suggestion... here's the code I added so it'll also work with the new design:

if ($('ytd-watch').attr('player-unavailable')==="") {
    location.replace('https://eachvideo.com/watch' + location.search);
    }

Pridať odpoveď

Aby ste mohli pridať odpoveď, prihláste sa.