summaryrefslogtreecommitdiff
path: root/.config/qutebrowser/greasemonkey/youtube-to-invidious.js
blob: b61f20c32d6636fbf537932c47e6520315e5a73a (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","invidio.xamh.de");