blob: 023ac7de44453917388b8299802c1b6d64b55f7a (
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 = "yewtu.be";
})();
|