// ==UserScript== // @name Redirect cnbeta // @namespace http://domain.com/directory // @description 重定向cnbeta桌面版网页到移动版 // @include https://*.cnbeta.com/articles/*/* // @exclude https://m.cnbeta.com/ // @version 0.0.3 // @downloadURL none // ==/UserScript== var url = location.pathname if (/articles/.test (location.pathname) ) { var plainPath = location.pathname.replace (/\/articles\/[\S]*\//, "") location.replace("https://m.cnbeta.com/view/" + plainPath) }