Resize map

Resize map by clicking a button and typing in how big it should be

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name     Resize map
// @description Resize map by clicking a button and typing in how big it should be
// @version 2.1.3
// @require https://code.jquery.com/jquery-3.2.1.min.js
// @include https://*/game.php?village=*&screen=map*
// @namespace https://greasyfork.org/users/151096
// ==/UserScript==
var parentThingie = document.getElementById("inner-border"); // Set parent

var input = document.createElement("input");
input.setAttribute("id", "inputSetSize");
input.setAttribute("type", "text");
input.setAttribute("value", "");
input.setAttribute("style", "margin-top:10px");
parentThingie.parentNode.insertBefore(input, parentThingie);

var buttonSetMapSize = document.createElement("button"); // Create button
buttonSetMapSize.innerHTML = "Set Map Size"; // Text of button
buttonSetMapSize.setAttribute("id", "setMapSize"); // Set ID
buttonSetMapSize.setAttribute("style","float:left;margin:10px;"); // Set CSS
buttonSetMapSize.setAttribute("class","btn"); // Set class

parentThingie.insertAdjacentElement('afterbegin', input); // Add input field to the site
parentThingie.insertAdjacentElement('afterbegin', buttonSetMapSize); // Add button to the site

document.getElementById("inputSetSize").addEventListener("keyup", function(event) {
    "use strict";
    event.preventDefault();
    if (event.keyCode === 13) {
        document.getElementById("setMapSize").click();
    }
});

document.getElementById("setMapSize").onclick = function largeMap(){ // Call this function when the button is clicked
    "use strict";
    var size = parseInt(document.getElementById("inputSetSize").value); // Prompts the user to type in map size
    TWMap.resize(size, true);
};