您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
move from mobile page to PC page on Wikipedia, Wiktionary etc...
// ==UserScript== // @name Move to PC Page on Wikipedia // @version 0.1 // @description move from mobile page to PC page on Wikipedia, Wiktionary etc... // @author Linuxmetel // @namespace https://twitter.com/linuxmetel // @license MIT // @match *.m.wikipedia.org/* // @match *.m.wiktionary.org/* // @match *.m.wikibooks.org/* // @match *.m.wikisource.org/* // @match *.m.wikinews.org/* // @match *.m.wikiversity.org/* // @match *.m.wikidata.org/* // @match *.m.wikimedia.org/* // @match *.m.wikiquote.org/* // @match *.m.wikivoyage.org/* // @grant none // ==/UserScript== (function() { 'use strict'; var re=/^(.*)m\.(.*)$/; location.host = location.host.replace(re, "$1$2"); // Your code here... })();