summaryrefslogtreecommitdiff
path: root/.config/qutebrowser/userscripts/youtube-to-invidious.js
blob: b51c506306ab437bb34c37501903872bb1296943 (plain)
1
2
3
4
5
6
7
8
9
10
11
// ==UserScript==
// @name           YouTube to Invidious redirector
// @namespace      lxf userscripts
// @match          http://youtube.com/*
// @match          https://youtube.com/*
// @match          http://www.youtube.com/*
// @match          https://www.youtube.com/*
// @run-at         document-start
// ==/UserScript==

location.href=location.href.replace("www.youtube.com","invidious.fdn.fr");