ZH desktop Wikipedia 中文桌面版维基百科优化

Redirect mobile Wikipedia to desktop and better ZH lang UX.

// ==UserScript==
// @name        ZH desktop Wikipedia 中文桌面版维基百科优化
// @version     1.0.0
// @description Redirect mobile Wikipedia to desktop and better ZH lang UX.
// @description:zh-hans 重定向移动版维基百科到桌面版,并优化中文用户体验。
// @description:zh-hant 重定向移動版維基百科到桌面版,并優化中文用戶體驗。
// @namespace   AmaniNakupendaWeWe
// @match       *://*.m.wikipedia.org/*
// @match       *://zh.wikipedia.org/zh*/*
// @run-at      document-start
// @grant       none
// @license     MIT
// ==/UserScript==

location.replace(
  location.href
    .replace(".m.wikipedia.org/", ".wikipedia.org/")
    .replace(/zh.wikipedia.org\/zh(-[a-z]+)?\//, 'zh.wikipedia.org/wiki/')
);