|
本帖最后由 jjzzcc 于 2025-3-24 05:29 编辑
- 安装油猴脚本
- 点击油猴脚本,选择添加新脚本
- 进去以后,点一下页面,ctrl加a(全选),删除
- 复制我的代码,到你刚刚删除的页面,ctrl加v(粘贴)
- 点文件点保存
- ok
// ==UserScript==
// @name UC云盘改fast
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 检查并修改地址栏中的链接,替换 drive.uc.cn 为 fast.uc.cn
// @author You
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 获取当前页面的URL
let currentUrl = window.location.href;
// 如果URL包含 drive.uc.cn,则进行替换
if (currentUrl.includes('drive.uc.cn')) {
// 替换为 fast.uc.cn
let newUrl = currentUrl.replace('drive.uc.cn', 'fast.uc.cn');
// 使用 location.replace() 进行跳转,避免历史记录中的记录
window.location.replace(newUrl);
}
})();
- 在浏览器中安装 Tampermonkey 插件(如果尚未安装)。
- 打开 Tampermonkey 的管理界面,点击 创建一个新脚本。
- 粘贴上面的代码到脚本编辑器中。
- 保存并启用脚本。
|
|