2019-01-25 18:34:18 +00:00
|
|
|
Download Tampermonkey for your Browser:
|
|
|
|
[Firefox](https://addons.mozilla.org/firefox/addon/tampermonkey/)
|
|
|
|
[Chrome and Chromium](https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo)
|
|
|
|
[Opera](https://addons.opera.com/extensions/details/tampermonkey-beta/)
|
|
|
|
|
2019-03-29 13:17:53 +00:00
|
|
|
Than add the following script in Tampermonkey. It will always add `&local=true` to the end of the video url.
|
2019-01-25 18:34:18 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
// ==UserScript==
|
|
|
|
// @name Invidious Proxy automatically
|
|
|
|
// @match *://*.invidio.us/watch?v=*
|
|
|
|
// @run-at document-start
|
|
|
|
// @grant none
|
|
|
|
// ==/UserScript==
|
|
|
|
|
|
|
|
|
|
|
|
if (!(/[?&]quality=dash/).test(location.search)) {
|
2019-03-29 13:17:53 +00:00
|
|
|
location.search += (location.search ? "&" : "?") + "local=true";
|
2019-01-25 18:34:18 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-03-29 13:18:28 +00:00
|
|
|
You can also enable this by checking `Proxy videos?` in your preferences.
|