Redirect cnbeta

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

目前为 2020-10-16 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Redirect cnbeta
  3. // @namespace http://domain.com/directory
  4. // @description 重定向cnbeta桌面版网页到移动版
  5. // @include https://*.cnbeta.com/articles/*/*
  6. // @exclude https://m.cnbeta.com/
  7.  
  8.  
  9. // @version 0.0.2
  10. // ==/UserScript==
  11.  
  12.  
  13.  
  14.  
  15. var plainPath = location.pathname.replace (/\/articles\/[\S]*\//, "")
  16.  
  17. location.replace("https://m.cnbeta.com/view/" + plainPath)
  18.