blob: 6f096e53eb26f93eaf374ac80c93a659eb086c58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// ==UserScript==
// @name Invidious
// @description youtube to invidious
// @match *://youtube.com/*
// @match *://*.youtube.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
top.location.hostname = "invidious.snopyta.org";
})();
|