FUT 23 Transfer list to 100

Increase size of Transfer list to 100 (instead of default 30)

  1. // ==UserScript==
  2. // @name FUT 23 Transfer list to 100
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Increase size of Transfer list to 100 (instead of default 30)
  6. // @author anbano
  7. // @match https://www.ea.com/fifa/ultimate-team/web-app/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=ea.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Your code here...
  17. setTimeout(function(){
  18. services.User.maxAllowedAuctions = 100;
  19. }, 20000)
  20. })();

QingJ © 2025

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