NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name URL Conversion | YouTube - HookTube // @namespace Tazeki // @description The smallest, possibly most useful YouTube-HookTube conversion script. RegEx based. Report bugs to tangentale@protonmail.com. Sends any /www.youtube.com/ sites to HookTube before page load. Does not affect /other.youtube.com/, (gaming.youtube.com, creatoracademy.youtube.com, etc.). // @include *youtube* // @version 1 // @license MIT // @grant none // @run-at document-start // ==/UserScript== var url = window.location.toString(); if (url.indexOf('www.youtube.com') !== - 1) { window.location = url.replace(/youtube.com/, 'hooktube.com'); } else if (url.indexOf('www.youtu.be') !== - 1) { window.location = url.replace(/youtu.be/, 'hooktube.com'); }