A userscript to redirect from YouTube to an Invidious instance.
Install it here.
Install a userscript extention if you don't have one installed already, and open this link (also referenced above). If this does not work, simply copy the code into the userscript extention, or import the .js file to it.
Replace the value of the variable invidiousURL
in the userscript with the hostname URL of the desired Invidious instance.
The value of invidiousURL
should ONLY include the hostname of the instance. Do not include the protocol or a trailing backslash.
Example:
const invidiousURL = "yewtu.be";
- This is fine.
const invidiousURL = "https://yewtu.be/";
- This is not fine.