101
eto?
// ==UserScript==
// @name Search [GW]
// @namespace http://worm.vline.ru/gw/
// @description search in menu
// @include http://www.gwars.io/*
// ==/UserScript==
(function() {
var root = typeof unsafeWindow != 'undefined' ? unsafeWindow : window;
// ищем ссылку на чат
var a = root.document.getElementsByTagName('a');
for (i = 0, l = a.length; i < l; i++) {
if (/<b>Чат<\/b>/i.test(a[i].innerHTML)) {
var parent = a[i].parentNode;
// разделитель
parent.appendChild(root.document.createTextNode(' | '));
// ссылка
var a = root.document.createElement('a');
a.setAttribute('href', '
http://www.gwars.io/search.php');
a.setAttribute('style', 'text-decoration: none');
a.innerHTML = ' <b>Search</b> ';
parent.appendChild(a);
break;
}
}
})();