Skip to content

Instantly share code, notes, and snippets.

@robertgzr
Last active January 11, 2018 02:55
Show Gist options
  • Save robertgzr/f9b48eb3e96683b33e07e835523c499b to your computer and use it in GitHub Desktop.
Save robertgzr/f9b48eb3e96683b33e07e835523c499b to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name y2hook-redir
// @namespace robertgzr
// @author robertgzr
// @description YouTube -> HookTube redirector
// @version 0.1.0
// @updateURL https://t.gnzler.io/y2hook
// @downloadURL https://t.gnzler.io/y2hook
// @license https://creativecommons.org/licenses/by-sa/4.0/
// @encoding utf-8
// @match *://*.youtube.com/watc*
// @match *://youtu.be/*
// @grant none
// @run-at document-start
// ==/UserScript==
window.location = window.location.href.replace(/youtube/, 'hooktube');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment