EPICGAMES infinite name-change

EPICGAMES infinite name-change.

  1. // ==UserScript==
  2. // @name EPICGAMES infinite name-change
  3. // @description EPICGAMES infinite name-change.
  4. // @namespace http://tampermonkey.net/
  5. // @match https://www.epicgames.com/account/personal
  6. // @version 1.0.0
  7. // ==/UserScript==
  8.  
  9. (function() {
  10. var plsjustremovedisabled = setInterval(function() {
  11. try {
  12. document.getElementsByClassName("displayName")[0].removeAttribute("disabled");
  13. } catch (e) {
  14. if (!e) {
  15. console.log("Allowed to change name");
  16. clearInterval(plsjustremovedisabled);
  17. }
  18. }
  19. }, 100);
  20. })();

QingJ © 2025

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