Signature Hide on Profiles

Hide signature on profiles

As of 2016-05-09. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Signature Hide on Profiles
// @namespace    PXgamer
// @version      0.1
// @description  Hide signature on profiles
// @author       PXgamer
// @include      *kat.cr/user/*/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('tr td strong:contains("Signature:")').html('<span><span class="ka ka16 ka-eye" style="display: inline-block;" title="Toggle Signature" id="toggleSig"></span><span style="color: black; display: inline-block;">Signature</span></span>');
})();

$('#toggleSig').on('click', function() {
    $('#wrapperInner > div.mainpart > table > tbody > tr > td:nth-child(1) > div:nth-child(6) > div > div.leftpad10px > table > tbody > tr:nth-child(6) > td:nth-child(2)').toggle();
});