documentation/Always-use-"local"-to-proxy-video-through-the-server-without-creating-an-account.md
Guru 0365e07803
change redirect url in userscript (#136)
* change redirect url in script

* Apply needed changes

Co-authored-by: TheFrenchGhosty <47571719+TheFrenchGhosty@users.noreply.github.com>
2021-10-03 17:06:22 +00:00

33 lines
1 KiB
Markdown

---
title: Always-use-"local"-to-proxy-video-through-the-server-without-creating-an-account
description:
published: true
date: 2021-05-23T16:58:12.539Z
tags:
editor: markdown
dateCreated: 2021-01-28T20:38:58.736Z
---
Download ViolentMonkey for your Browser:
[Firefox](https://addons.mozilla.org/en-US/firefox/addon/violentmonkey/)
[Chrome and Chromium](https://chrome.google.com/webstore/detail/violentmonkey/jinjaccalgkegednnccohejagnlnfdag)
[Others](https://violentmonkey.github.io/get-it/)
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.