您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sets default language when fetching new talents
- // ==UserScript==
- // @name virtualmanager.com - Set country as default for new talents
- // @namespace https://greasyfork.org/en/users/884999-l%C3%A6ge-manden
- // @version 0.1
- // @description Sets default language when fetching new talents
- // @author VeryDoc
- // @match https://www.virtualmanager.com/players/new
- // @icon https://www.google.com/s2/favicons?sz=64&domain=virtualmanager.com
- // @grant none
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- let dropdown = document.getElementById('country');
- dropdown.value = 2;
- })();