11 lines
346 B
JavaScript
11 lines
346 B
JavaScript
// ==UserScript==
|
|
// @name Invidious Proxy automatically
|
|
// @match *://*.inv.cochrun.xyv/watch?v=*
|
|
// @run-at document-start
|
|
// @grant none
|
|
// ==/UserScript==
|
|
|
|
|
|
if (!(/[?&]local=/).test(location.search) && !(/[?&]quality=dash/).test(location.search)) {
|
|
location.search += (location.search ? "&" : "?") + "local=true";
|
|
}
|