Greasy Fork

Hide PVP

Hides the annoying guerilla fight button

目前为 2018-12-25 提交的版本。查看 最新版本

// ==UserScript==
// @name         Hide PVP
// @namespace    https://greasyfork.org/bg/users/180421-emrace
// @version      0.2
// @description  Hides the annoying guerilla fight button
// @author       Emrace
// @match        https://www.erepublik.com/*/military/battlefield/*
// @grant        none
// ==/UserScript==

function pesho() {

    var pvp = $('#join_pvp');

    if(pvp.is(':visible'))
    {
        $('#join_pvp').hide()
    }

}

setTimeout(function() {
        pesho();
    },
    2000);