您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects all Wikipedia mobile pages to their desktop counterpart
// ==UserScript== // @name Wikipedia mobile remover // @namespace Wikipedia // @match https://*.m.wikipedia.org/* // @run-at document-start // @grant none // @icon https://upload.wikimedia.org/wikipedia/en/8/80/Wikipedia-logo-v2.svg // @version 1.0 // @author ccuser44 // @license CC0 // @description Redirects all Wikipedia mobile pages to their desktop counterpart // ==/UserScript== /* To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. */ var matches = document.location.href.match(/^https?:\/\/(\w+)\.m\.wikipedia\.org\/(.+)/); if (matches[1]) { window.stop(); window.location.replace("https://" + matches[1] + ".wikipedia.org/" + matches[2]); };
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址