NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name BestOfYoutubeRedirect
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Redirects bestofyoutube directly to youtube videos.
// @author You
// @match https://bestofyoutube.com/*
// @icon https://www.google.com/s2/favicons?domain=bestofyoutube.com
// @grant none
// @updateURL https://openuserjs.org/meta/nascent/BestOfYoutubeRedirect.meta.js
// @downloadURL https://openuserjs.org/install/nascent/BestOfYoutubeRedirect.user.js
// @license GPL-3.0-or-later
// ==/UserScript==
(function() {
'use strict';
var i, frames;
var newUrl = "";
frames = document.getElementsByTagName("iframe");
var oldUrl = frames[0].src;
//convert from embed url to noral youtube url
var regex = /embed\/(.+)/;
newUrl = oldUrl.match(regex);
window.location.href = "https://www.youtube.com/watch?v=" + newUrl[1];
})();