您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Статистика по боям за территорию: золото на каждого героя, победные и проигранные бои, % потери сектора и пр. (by Demin)
当前为
- // ==UserScript==
- // @name hwm_map_wars_stat
- // @author Demin
- // @namespace Demin
- // @description Статистика по боям за территорию: золото на каждого героя, победные и проигранные бои, % потери сектора и пр. (by Demin)
- // @homepage https://greasyfork.org/users/1602-demin
- // @icon http://i.imgur.com/LZJFLgt.png
- // @version 2.6
- // @encoding utf-8
- // @include http://*heroeswm.ru/*
- // @include http://178.248.235.15/*
- // @include http://209.200.152.144/*
- // @include http://*lordswm.com/*
- // @grant GM_deleteValue
- // @grant GM_getValue
- // @grant GM_listValues
- // @grant GM_setValue
- // @grant GM_addStyle
- // @grant GM_log
- // @grant GM_openInTab
- // ==/UserScript==
- // (c) 2013, demin ( http://www.heroeswm.ru/pl_info.php?id=15091 )
- var version = '2.6';
- var script_num = 124668;
- var script_name = 'HWM mod - Roulette delete by Demin';
- var string_upd = /124668=(\d+\.\d+)/;
- var url_cur = location.href;
- var url = 'http://'+location.hostname+'/';
- try {
- if (!this.GM_getValue || (this.GM_getValue.toString && this.GM_getValue.toString().indexOf("not supported")>-1)) {
- this.GM_getValue=function (key,def) {
- return localStorage[key] || def;
- };
- this.GM_setValue=function (key,value) {
- return localStorage[key]=value;
- };
- this.GM_deleteValue=function (key) {
- return delete localStorage[key];
- };
- }
- if ( (tag('body'))[0] ) {
- var dfv = '<b>\u041F\u0435\u0440\u0441\u043E\u043D\u0430\u0436</b>';
- var regexp_roul = / \u0438 <a href=.?roulette\.php.?>\u0440\u0443\u043B\u0435\u0442\u043A\u0430<\/a>/;
- var regexp_r = /<td bgcolor=.?#005C11.?>/;
- var regexp_r2 = /\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0435 \u0438\u0433\u0440\u044B/;
- var regexp_r3 = /\u0418\u0433\u0440\u0430: /;
- if (url.match('lordswm')) {
- dfv = '<b>Character</b>';
- regexp_roul = / and <a href=.?roulette\.php.?>roulette<\/a>/;
- regexp_r2 = /Last spins/;
- regexp_r3 = /Last spin time: /;
- }
- // chat
- if ( location.pathname=='/chat_line.php' ) {
- var all_a = tag('option');
- var a_len = all_a.length;
- for (var i=a_len; i--;) {
- var a_i = all_a[i];
- if ( a_i.innerHTML.match(/\u0420\u0443\u043B\u0435\u0442\u043A\u0430/) || a_i.innerHTML.match(/Roulette/) ) {
- a_i.parentNode.removeChild(a_i);
- }
- }
- }
- // menu
- var all_a = tag('li');
- var a_len = all_a.length;
- for (var i=a_len; i--;) {
- var a_i = all_a[i];
- if ( ( a_i.innerHTML.match(/frames\.php\?room=4/) && !a_i.innerHTML.match(/<b>/) ) || a_i.innerHTML.match(/inforoul\.php/) || a_i.innerHTML.match(/allroul\.php/) ) {
- a_i.parentNode.removeChild(a_i);
- }
- }
- var all_a = tag('a');
- var a_len = all_a.length;
- for (var i=a_len; i--;) {
- var a_i = all_a[i];
- if ( a_i.href.match(/roulette\.php/) && a_i.innerHTML.match(/<b>.+<\/b>/) ) {
- a_i.href = 'home.php';
- a_i.innerHTML = dfv;
- }
- }
- // map
- var all_a = tag('center');
- var a_len = all_a.length;
- for (var i=a_len; i--;) {
- var a_i = all_a[i].innerHTML;
- if ( a_i.indexOf("<center")!=-1 ) {continue;}
- if ( a_i.match(regexp_roul) ) {
- a_i = a_i.replace(regexp_roul, '');
- break;
- }
- }
- // roul
- if ( location.pathname=='/roulette.php' ) {
- var all_a = tag('table');
- var a_len = all_a.length;
- for (var i=a_len; i--;) {
- if ( regexp_r.exec(all_a[i].innerHTML) ) {
- if ( !regexp_r.exec(all_a[i+1].innerHTML) ) {
- all_a[i-1].style.display = 'none';
- break;
- }
- }
- }
- }
- if ( location.pathname=='/allroul.php' ) {
- var all_a = tag('table');
- var a_len = all_a.length;
- for (var i=a_len; i--;) {
- if ( regexp_r2.exec(all_a[i].innerHTML) ) {
- if ( !regexp_r2.exec(all_a[i+1].innerHTML) ) {
- all_a[i].style.display = 'none';
- break;
- }
- }
- }
- }
- if ( location.pathname=='/inforoul.php' ) {
- var all_a = tag('table');
- var a_len = all_a.length;
- for (var i=a_len; i--;) {
- if ( regexp_r3.exec(all_a[i].innerHTML) ) {
- if ( !regexp_r3.exec(all_a[i+1].innerHTML) ) {
- all_a[i].style.display = 'none';
- break;
- }
- }
- }
- }
- }
- } finally {
- if ( location.pathname=='/roulette.php' || location.pathname=='/inforoul.php' || location.pathname=='/allroul.php' || ( location.pathname=='/frames.php' && location.search && location.search.match(/room=4/) ) )
- {
- setTimeout(function() { window.location=url+'home.php'; }, 300);
- setTimeout(function() { window.location=url+'home.php'; }, 5000);
- }
- update_n()
- }
- function $( id ) { return document.getElementById( id ); }
- function tag( id ) { return document.getElementsByTagName( id ); }
- function addEvent(elem, evType, fn) {
- if (elem.addEventListener) {
- elem.addEventListener(evType, fn, false);
- }
- else if (elem.attachEvent) {
- elem.attachEvent("on" + evType, fn)
- }
- else {
- elem["on" + evType] = fn
- }
- }
- function createXMLHttpReq(rndm)
- {
- var objXMLHttpReq;
- if (window.XMLHttpRequest)
- {
- // Real browsers ;)
- //
- objXMLHttpReq = new XMLHttpRequest();
- }
- else if (window.ActiveXObject)
- {
- // IE
- //
- objXMLHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
- }
- return objXMLHttpReq;
- }
- function update_n() {
- if ( (parseInt(GM_getValue('last_update', '0')) + 86400000 <= (new Date().getTime())) || (parseInt(GM_getValue('last_update', '0')) > (new Date().getTime())) ) {
- var objXMLHttpReqUpd = createXMLHttpReq(Math.random()* 1000000);
- objXMLHttpReqUpd.open('GET', url + 'photo_pl_photos.php?aid=1777' + '&rand=' + (Math.random()* 1000000), true);
- objXMLHttpReqUpd.onreadystatechange = function() { update(objXMLHttpReqUpd); }
- objXMLHttpReqUpd.send(null);
- }
- }
- function update(obj) {
- if (obj.readyState == 4 && obj.status == 200) {
- var update_text1 = '\n\n\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 Greasemonkey \u0441\u043A\u0440\u0438\u043F\u0442\u0430 "';
- var update_text2 = '".\n\u0425\u043E\u0442\u0438\u0442\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E?';
- var remote_version, rt;rt=obj.responseText;GM_setValue('last_update', ''+new Date().getTime());remote_version=string_upd.exec(rt)[1];if(version!=-1){if (remote_version > version) setTimeout(function() { if(confirm('There is an update available for the Greasemonkey script "'+script_name+'".\nWould you like to go to the install page now?'+update_text1+script_name+update_text2)){window.open('http://userscripts.org/scripts/show/'+script_num, '_blank')} }, 100) }}
- }