Force YouTube Desktop

Forces use of the Desktop version of YouTube

当前为 2023-10-22 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Force YouTube Desktop
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Forces use of the Desktop version of YouTube
  6. // @author TheTank20
  7. // @license Unlicense
  8. // @match https://m.youtube.com/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  10. // @run-at document-start
  11. // @grant none
  12. // ==/UserScript==
  13. location.replace(`${window.location.href.replace("m.youtube.com","www.youtube.com")}${new URL(window.location.href).searchParams.toString()?"&app=desktop":"?app=desktop"}`);