1
0
mirror of https://gitea.invidious.io/iv-org/documentation synced 2025-03-24 19:10:06 +01:00

907 B

Always use "local" to proxy video through the server without creating an account

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       *://*.redirect.invidious.io/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.