eUkraine Battle Orders

Orders for eUkraine in eRepublik.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name           eUkraine Battle Orders
// @namespace      www.erepublik.com
// @version        0.01
// @author         vist
// @description    Orders for eUkraine in eRepublik.
// @include        http*erepublik.com*
// @connect        docs.google.com
// @grant          GM_xmlhttpRequest
// ==/UserScript==

(function(window, undefined){
	var w;
	if(unsafeWindow != "undefined")
	{
		w = unsafeWindow;
	}
	else
	{
		w = window;
	}
	if(w.self != w.top)
	{
		return;
	}

	console.log('init: ' + GM_info.script.name);

	var mapContainer = jQuery('#mapContainer');
	if(mapContainer.length)
	{
		GM_xmlhttpRequest({
			method: 'GET',
			// url: 'https://docs.google.com/spreadsheets/d/1hkNxf004pUl_8gb8e0Bh4W2ryavzntTw7JG5YLVNET4/edit?usp=drive_web',
			url: 'https://docs.google.com/spreadsheets/d/1hkNxf004pUl_8gb8e0Bh4W2ryavzntTw7JG5YLVNET4/pubhtml',

			onload:function(response){
				var page = jQuery(response.responseText);
				var table = page.find('table').html();
				mapContainer.after(table);
			}
		});
	}
})(window);