documentation/Always-use-"local"-to-proxy-video-through-the-server-without-creating-an-account.md
2021-05-23 17:01:19 +00:00

1.0 KiB

title description published date tags editor dateCreated
Always-use-"local"-to-proxy-video-through-the-server-without-creating-an-account true 2021-05-23T16:58:12.539Z markdown 2021-01-28T20:38:58.736Z

Download ViolentMonkey for your Browser:
Firefox
Chrome and Chromium
Others

Than add the following script in ViolentMonkey. It will always add &local=true to the end of the video URL.

// ==UserScript==
// @name        Invidious Proxy automatically
// @match       *://*.invidio.us/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";
}

You can also enable this by checking Proxy videos? in your preferences.