Greasy Fork is available in English.

百度网盘 自动跳转旧版

百度网盘(桌面网页版)自动从新版界面跳转为更加简洁的旧版界面

// ==UserScript==
// @name         百度网盘 自动跳转旧版
// @namespace    https://pzwboy.top/
// @version      1.0.0
// @description  百度网盘(桌面网页版)自动从新版界面跳转为更加简洁的旧版界面
// @author       Pzwboy
// @match        https://pan.baidu.com/disk/main*
// @icon         https://nd-static.bdstatic.com/m-static/v20-main/favicon-main.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
window.location.replace("https://pan.baidu.com/disk/home?from=newversion&stayAtHome=true");
})();