Skip to content

Instantly share code, notes, and snippets.

@mindbound
Last active October 18, 2023 15:05
Show Gist options
  • Save mindbound/e1b18e800092f9bef6f36023bb618b62 to your computer and use it in GitHub Desktop.
Save mindbound/e1b18e800092f9bef6f36023bb618b62 to your computer and use it in GitHub Desktop.
YT2IV
// ==UserScript==
// @name YT2IV
// @author mindbound
// @version 0.1
// @description Redirect YouTube to Invidious Datura Network instance
// @license MIT; https://opensource.org/license/mit/
// @namespace https://gist.github.com/mindbound
// @downloadURL https://gist.github.com/mindbound/e1b18e800092f9bef6f36023bb618b62/raw/089bd2662dcf95bad35263af8807d19a080423e2/YT2IV.user.js
// @updateURL https://gist.github.com/mindbound/e1b18e800092f9bef6f36023bb618b62/raw/089bd2662dcf95bad35263af8807d19a080423e2/YT2IV.user.js
// @icon https://invidious.io/invidious-colored-vector.svg
// @grant none
// @run-at document-start
// @include *://www.youtube.com/*
// @include *://*.youtube.com/*
// ==/UserScript==
"use strict";
(function () {
window.location.replace("https://iv.datura.network" + window.location.pathname + window.location.search);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment