// ==UserScript== // @name 配合“百度网盘视频播放尊享 VIP | 解锁视频倍数 | 解锁全部清晰度”(原作者为:Cangshi)使用 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 原脚本失效,原作者大大还未更新脚本,但原脚本在老地址可以正常运行,于是用此脚本进行暂时的维护。 // @author Yz // @include https://pan.baidu.com/pfile/* // @icon https://www.google.com/s2/favicons?sz=64&domain=baidu.com // @grant none // @downloadURL none // ==/UserScript== var currentUrl = window.location.href; // 替换URL中的pfile为play/video# var newUrl = currentUrl.replace("pfile", "play/video#"); // 跳转到替换后的页面 window.location.href = newUrl;