documentation/Always-use-"local"-to-proxy-video-through-the-server-without-creating-an-account.md

790 B

Download Tampermonkey for your Browser:
Firefox
Chrome and Chromium
Opera

Than add the following script in Tampermonkey. 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 (!(/[?&]quality=dash/).test(location.search)) {
  location.search += (location.search ? "&" : "?") + "local=true";
}

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