您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
HWM mod - hwm_hunter_help (by Demin)
- // ==UserScript==
- // @name hwm_hunter_help
- // @namespace Demin
- // @description HWM mod - hwm_hunter_help (by Demin)
- // @homepage http://userscripts.org/scripts/show/96791
- // @version 1.02
- // @include http://*heroeswm.*/*
- // @include http://178.248.235.15/*
- // @include http://173.231.37.114/*
- // @include http://*freebsd-help.org/*
- // @include http://*heroes-wm.*/*
- // @include http://*hommkingdoms.info/*
- // @include http://*hmmkingdoms.com/*
- // @include http://*герои.рф/*
- // @include http://*.lordswm.*/*
- // @exclude */map.php*
- // @exclude */group_wars.php?filter=hunt
- // ==/UserScript==
- // (c) 2011, demin (http://www.heroeswm.ru/pl_info.php?id=15091)
- var version = '1.02';
- var els = tag('img');
- for (var i=0; i<els.length; i++)
- {
- var el = els[i];
- if ( el.src.match('i\/top\/line\/lapa\.gif') )
- {
- alert(el.title);
- break;
- }
- }
- function $( id ) { return document.getElementById( id ); }
- function tag( id ) { return document.getElementsByTagName( id ); }