From 4914c45e1df64dcee7ed5ebed18a986c32e5333d Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Fri, 29 Mar 2019 08:17:53 -0500 Subject: [PATCH] Updated Always use "dash" to proxy video through the server without creating an account (markdown) --- ...video-through-the-server-without-creating-an-account.md" | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename "Always-use-\"dash\"-to-proxy-video-through-the-server-without-creating-an-account.md" => "Always-use-\"local\"-to-proxy-video-through-the-server-without-creating-an-account.md" (56%) diff --git "a/Always-use-\"dash\"-to-proxy-video-through-the-server-without-creating-an-account.md" "b/Always-use-\"local\"-to-proxy-video-through-the-server-without-creating-an-account.md" similarity index 56% rename from "Always-use-\"dash\"-to-proxy-video-through-the-server-without-creating-an-account.md" rename to "Always-use-\"local\"-to-proxy-video-through-the-server-without-creating-an-account.md" index 993c20d..2be5b31 100644 --- "a/Always-use-\"dash\"-to-proxy-video-through-the-server-without-creating-an-account.md" +++ "b/Always-use-\"local\"-to-proxy-video-through-the-server-without-creating-an-account.md" @@ -3,7 +3,7 @@ Download Tampermonkey for your Browser: [Chrome and Chromium](https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo) [Opera](https://addons.opera.com/extensions/details/tampermonkey-beta/) -Than add the following script in Tampermonkey. It will always add `&quality=dash` to the end of the video url. +Than add the following script in Tampermonkey. It will always add `&local=true` to the end of the video url. ``` // ==UserScript== @@ -15,8 +15,8 @@ Than add the following script in Tampermonkey. It will always add `&quality=dash if (!(/[?&]quality=dash/).test(location.search)) { - location.search += (location.search ? "&" : "?") + "quality=dash"; + location.search += (location.search ? "&" : "?") + "local=true"; } ``` -##### NOTE: At the moment `googlevideo.com` will still be loaded as third party even with `dash` enabled. The current workaround is to either block this with [uBlock](https://addons.mozilla.org/firefox/addon/ublock-origin/), [uMatrix](https://addons.mozilla.org/firefox/addon/umatrix/) or [NoScript](https://addons.mozilla.org/firefox/addon/noscript/) \ No newline at end of file +You can also enable this by checking `Proxy videos? ` in your preferences. \ No newline at end of file