virtualmanager.com - Set country as default for new talents

Sets default language when fetching new talents

  1. // ==UserScript==
  2. // @name virtualmanager.com - Set country as default for new talents
  3. // @namespace https://greasyfork.org/en/users/884999-l%C3%A6ge-manden
  4. // @version 0.1
  5. // @description Sets default language when fetching new talents
  6. // @author VeryDoc
  7. // @match https://www.virtualmanager.com/players/new
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=virtualmanager.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. let dropdown = document.getElementById('country');
  16. dropdown.value = 2;
  17. })();