Move to PC Page on Wikipedia

move from mobile page to PC page on Wikipedia, Wiktionary etc...

  1. // ==UserScript==
  2. // @name Move to PC Page on Wikipedia
  3. // @version 0.1
  4. // @description move from mobile page to PC page on Wikipedia, Wiktionary etc...
  5. // @author Linuxmetel
  6. // @namespace https://twitter.com/linuxmetel
  7. // @license MIT
  8.  
  9. // @match *.m.wikipedia.org/*
  10. // @match *.m.wiktionary.org/*
  11. // @match *.m.wikibooks.org/*
  12. // @match *.m.wikisource.org/*
  13. // @match *.m.wikinews.org/*
  14. // @match *.m.wikiversity.org/*
  15. // @match *.m.wikidata.org/*
  16. // @match *.m.wikimedia.org/*
  17. // @match *.m.wikiquote.org/*
  18. // @match *.m.wikivoyage.org/*
  19.  
  20. // @grant none
  21. // ==/UserScript==
  22.  
  23. (function() {
  24. 'use strict';
  25. var re=/^(.*)m\.(.*)$/;
  26. location.host = location.host.replace(re, "$1$2");
  27. // Your code here...
  28. })();

QingJ © 2025

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