Random Wiki Page Shortcut (Alt+X)

Access a random Fandom wiki page with a shortcut

  1. // ==UserScript==
  2. // @name Random Wiki Page Shortcut (Alt+X)
  3. // @version 1.0
  4. // @description Access a random Fandom wiki page with a shortcut
  5. // @author lemocha
  6. // @match https://*.fandom.com/*
  7. // @icon https://static.wikia.nocookie.net/1fcd9eb5-31ba-42aa-bc10-4a8c6332d69b
  8. // @grant none
  9. // @run-at document-idle
  10. // @license MIT
  11. // @namespace https://gf.qytechs.cn/users/1201646
  12. // ==/UserScript==
  13.  
  14.  
  15. (() => {
  16. "use strict";
  17. document.addEventListener("keyup", event =>
  18. {
  19. // if Alt+X key combo pressed
  20. if (event.altKey && event.key === "x")
  21. {
  22. // redirect to random page url (literally)
  23. window.location.assign(window.location.origin + "/wiki/Special:Random");
  24. }
  25. });
  26. })();

QingJ © 2025

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