Dotlan+

Eve Dotlan enhancements

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Dotlan+
// @namespace   armeagle.nl
// @include     http://evemaps.dotlan.net/npc/*/stations-ballalalalalalal
// @version     1
// @description Eve Dotlan enhancements
// ==/UserScript==

// @include     http://evemaps.dotlan.net/svg/*
//var systems = document.querySelectorAll('#sysuse > use');
//for (index = 0; index < systems.length; index++) {
//	var system = systems[index];
//	var systemDef = system.getAttribute('id').replace('sys', '#def');
	
//	var systemDef = document.querySelector(systemDef);
//	var systemName = systemDef.querySelector('a > text.ss').textContent;
//	systemUrl = 'http://evemaps.dotlan.net/system/' + systemName;
//	console.log(systemUrl);
//}

stationRowList = document.querySelectorAll('#inner > table.tablelist > tbody > tr');

for (index = 0; index < stationRowList.length; index++) {
	var stationRow = stationRowList[index];
	
	(function() {
	
	var systemTd = stationRow.querySelector('td:nth-child(2)');
	var systemUrl = systemTd.querySelector('a').getAttribute('href').replace(/map\/[^\/]+/, 'system');
		
	var req = new XMLHttpRequest();
	req.onload = function(e) {
		console.log(index, e, req);
		var text = req.responseText.replace(/^(.*\n)*.*<html/i, "<html").replace(/<\/html>(.*\n)*.*$/i, "</html>");
		
		var contain = document.createElement('div');
		contain.innerHTML = text;
		
		if (contain.querySelectorAll('b > span').length > 0) {
			systemTd.appendChild(document.createTextNode(' ** ice **'));
		}
	};
	
	req.open('GET', systemUrl, true);
	req.send();
	})();
}