// ==UserScript==
// @name [1180] fast links
// @namespace berkut009
// @description fast links - помощник для паучков
// @version 1.6
// @homepage http://userscripts.org/scripts/show/173761
// @include https://*heroeswm.ru/clan_info.php*
// @include https://178.248.235.15/clan_info.php*
// @include https://209.200.152.144/clan_info.php*
// @include https://*.lordswm.com/clan_info.php*
// @include https://*герои.рф/clan_info.php*
// @downloadURL https://update.greasyfork.icu/scripts/7948/%5B1180%5D%20fast%20links.user.js
// @updateURL https://update.greasyfork.icu/scripts/7948/%5B1180%5D%20fast%20links.meta.js
// ==/UserScript==
// (c) 2013 + mod, berkut009 ( http://www.heroeswm.ru/pl_info.php?id=1872315 )
var clan_web_offline = document.querySelectorAll("img[src$='clans/offline.gif']");
var web_table = clan_web_offline[0];
{
while ( web_table.tagName.toLowerCase()!='tr' ) { web_table = web_table.parentNode; }
var web_table_parent = document.querySelector("a[href^='pl_info.php?id=372083']");
while ( web_table_parent.tagName.toLowerCase()!='tr' ) { web_table_parent = web_table_parent.parentNode; }
var web_table = document.createElement('tr');
var web_hide_parent = web_table_parent.previousSibling.firstChild;
web_table_parent.parentNode.insertBefore(web_table, web_table_parent);
if ( location.search.match('1180') ) {
var st_author = '
Быстрые ссылки:
';
var web_table_html = '| ';
web_table_html += ' | ';
web_table_html += '';
web_table_html += ' | ';
web_table_html += '';
web_table_html += '| ';
web_table_html += '» Кузнецы клана:';
web_table_html += ' | | ';
web_table_html += '90% Roamus';
web_table_html += '90% ВиктСиль';
web_table_html += '90% Акмарал23';
web_table_html += '90% SVX';
web_table_html += '90% 1oann';
web_table_html += '90% Lencom';
web_table_html += '90% kato62';
web_table_html += '50% Vlady Lesh за 45%';
web_table_html += ' |
| ';
web_table.innerHTML = web_table_html;
}
}
|