// ==UserScript== // @name 快速修改任天堂账户区域 // @namespace // @author Alan // @version 1.1.0 // @description 方便用户快速切换任天堂的区域,今夜我们不止是墨西哥人! // @require http://libs.baidu.com/jquery/2.1.4/jquery.min.js // @include https://accounts.nintendo.com/profile/edit // @grant none // @downloadURL none // ==/UserScript== (function () { 'use strict'; var buttonType = { "display":"block", "margin-bottom":"10px" }; var buttonGroup = '
' $("body").append(buttonGroup); $(".btn-change-place").css(buttonType); $(".btn-change-place").on("click",function(){ $("select[name='country_id']").val($(this).data("id")); // $("select[name='country_id']").trigger("change"); // $("select[name='country_id']").change(); $("select[name='timezone_id']").html(""); $("select[name='timezone_id']").append(""); }); })();