UC网盘自动跳转下载

自动把网址中的drive改为fast

  1. // ==UserScript==
  2. // @name UC网盘自动跳转下载
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description 自动把网址中的drive改为fast
  6. // @author 月月小射
  7. // @match https://drive.uc.cn/s/*
  8. // @icon https://www.google.com/s2/favicons?domain=uc.cn
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. (function() {
  13. 'use strict';
  14. const currentPath = window.location.pathname;
  15. const idMatch = currentPath.match(/\/s\/([a-zA-Z0-9]+)/);
  16. if (idMatch && idMatch[1]) {
  17. const newUrl = `https://fast.uc.cn/s/${idMatch[1]}`;
  18. window.location.replace(newUrl);
  19. }
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址