YouTube to Invidious

Redirects youtube to invidious

  1. // ==UserScript==
  2. // @name YouTube to Invidious
  3. // @version 1.1
  4. // @namespace 1993.uk
  5. // @description Redirects youtube to invidious
  6. // @run-at document-start
  7. // @license CC0
  8. // @match https://www.youtube.com/watch*
  9. // @match https://www.youtube.com/embed*
  10. // ==/UserScript==
  11. location.replace('https://yt.cdaut.de' + location.pathname + location.search)