Torn - Hide Upgrade

Hide your upgrade link and upgrade message hint

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name            Torn - Hide Upgrade
// @author          FrogKnight
// @namespace       http://www.torn.com/profiles.php?XID=1659259
// @description     Hide your upgrade link and upgrade message hint
// @version	        1.0
// @match           *://www.torn.com/*
// @released        2016-11-09
// @updated         2016-11-09
// @compatible      Greasemonkey
// ==/UserScript==

(function(){
    'use strict';
    $('div.upgrade-level').remove();
    $('div.msg.right-round').find('li:contains("You have enough experience to go up to level")').remove();

    if ($('div.msg.right-round').text().trim().length === 0) {
        $("div.info-msg-cont").remove();
        $('hr.page-head-delimiter.m-top10.m-bottom10').remove();
    }
})();