Redirect cnbeta

重定向cnbeta桌面版网页到移动版

// ==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.2
// ==/UserScript==

if (/articles/.test (location.pathname) ) {
    var plainPath = 
    location.pathname.replace (/articles\/[\S]*\//, "")
    
location.replace("https://m.cnbeta.com/view" + plainPath)
}