// ==UserScript== // @name 百度云分享手机版 // @namespace http://tampermonkey.net/ // @version 1.1 // @description 百度网盘pc端看不到资源分享,转到手机版分享页面,以便看到资源分享 // @author ilxdh.com // @match *://pan.baidu.com/share/home* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var curHref = window.location.href; var curHref0 = curHref.split('/share/')[0]; var curHref1 = curHref.split('/share/')[1]; var newHref = curHref0 + '/wap/share/' + curHref1; window.location.href = newHref; })();