Greasy Fork镜像 支持简体中文。

9DB Raid Finder: Invite 10

Unlocks the ability to invite 10 people, even if you don't have enough XP

  1. // ==UserScript==
  2. // @name 9DB Raid Finder: Invite 10
  3. // @namespace k8ihczt9faet9c
  4. // @match https://9db.jp/pokego/data/62
  5. // @match https://9db.jp/pokemongo/data/9906
  6. // @grant none
  7. // @version 1.0
  8. // @description Unlocks the ability to invite 10 people, even if you don't have enough XP
  9. // @run-at document-end
  10. // @inject-into content
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. "use strict";
  16.  
  17.  
  18. document.getElementById("wiki_invite")?.addEventListener("click", function inviteClick() {
  19. const limit = document.getElementById("invite_limit");
  20.  
  21. if (limit) {
  22. this.removeEventListener("click", inviteClick);
  23.  
  24. if (limit.children.length === 5) {
  25. const options = [];
  26.  
  27. for (let i = 6; i <= 10; ++i) {
  28. const option = document.createElement("a");
  29. option.dataset.val = option.textContent = String(i);
  30. options.push(option);
  31. }
  32.  
  33. limit.append(...options);
  34. }
  35. }
  36. });
  37. })();

QingJ © 2025

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