Redirect Wikimedia Projects from Mobile Version to Desktop Version

Redirect wiki projects from mobile version to desktop version with ManifestV3. Including wikipedia, wikibooks, wiktionary, wikiquote, wikimedia, wikisource, wikiversity, wikispecies, wikidata, wikivoyage and wikinews.

// ==UserScript==
// @name        Redirect Wikimedia Projects from Mobile Version to Desktop Version
// @version     1.0.0
// @description Redirect wiki projects from mobile version to desktop version with ManifestV3. Including wikipedia, wikibooks, wiktionary, wikiquote, wikimedia, wikisource, wikiversity, wikispecies, wikidata, wikivoyage and wikinews.
// @namespace   AmaniNakupendaWeWe
// @match       *://*.m.wikipedia.org/*
// @match       *://*.m.wikibooks.org/*
// @match       *://*.m.wiktionary.org/*
// @match       *://*.m.wikiquote.org/*
// @match       *://*.m.wikimedia.org/*
// @match       *://*.m.wikisource.org/*
// @match       *://*.m.wikiversity.org/*
// @match       *://*.m.wikispecies.org/*
// @match       *://*.m.wikidata.org/*
// @match       *://*.m.wikivoyage.org/*
// @match       *://*.m.wikinews.org/*
// @run-at      document-start
// @grant       none
// @license     MIT
// ==/UserScript==

const re = /m.wik(.+)\.org/;

location.replace(
  location.href
    .replace(re, location.href.match(re)[0].slice(2))
);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址