💬 Share Your Feedback on the New Katalon Community Forum!

@Russ_Thomas introduced Tampermonkey to us at [forum.katalon.com] It's just too noisy! 😠 which enables us to customize the look of any web pages on browser locally.

I added a Tampermonkey script into my Chrome browser to customize the look of the https://forum.katalon.com/*/*

// ==UserScript==
// @name         Hide unwanted elements in Katalon Forum
// @version      0.2
// @description  originally suggested by Russ_Thomas at https://forum.katalon.com/t/trending-topics-banner-does-not-render-titles-correctly/87066/5, and revised at Nov 2025 to be in sync with the new page look
// @match        https://forum.katalon.com/*
// @match        https://forum.katalon.com/*/*
// ==/UserScript==

(function() {
    'use strict';
    if(window !== window.top) return;
    var $ = window.jQuery, styBig, stySmall;
    insertStyles();
})();

function insertStyles() {
    var style = `
<style>
div#main-container {
    display:none;
}
div.banner-promo {
    display:none;
}
div.welcome-banner__title {
    display:none;
}
.welcome-banner .custom-search-banner-wrap {
    padding-block: 10px 10px;
}
section.navigation-container {
    margin-top: 10px;
}
div.custom-search-banner {
    display:none;
}
div.custom-search-banner-headline {
    display:none;
}
div.custom-search-banner-wrap > p {
    display:none;
}
div.navigation-container {
    font-size: 10pt;
}
table.topic-list {
    border-spacing: 0 10px;
}
table.topic-list thead {
    display:none;
}
table.topic-list td {
    padding: 15px 10px 10px 10px;
}
ul#navigation-bar {
    display:none;
}

table > tbody > tr[data-topic-id="182435"],
table > tbody > tr[data-topic-id="78531"] {
    display:none;
}
table > tbody > tr[data-topic-id=""] td,
table > tbody > tr[data-topic-id=""] td {
    display:none;
}

</style>`;
    $('body').append(style);
}

With this script, Tampermonkey turned the page to look like this:

I would prefer this unfriendly look without salutations.