// ==UserScript==
// @name Remove Shoutbox on dopal.org
// @namespace http://tampermonkey.net/
// @version 1.0
// @description This script removes the shoutbox from dopal.org
// @author kej9
// @match *://*.dopal.org/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

// Identify the shoutbox by its id or class (this needs to be adjusted based on the actual HTML)
let shoutbox = document.querySelector('#shoutbox, .shoutbox, [data-widget="shoutbox"]');

// Check if shoutbox exists and then remove it
if (shoutbox) {
shoutbox.remove();
console.log("Shoutbox removed.");
} else {
console.log("Shoutbox not found.");
}

})();
Serwis wykorzystuje pliki cookies w celach statystycznych oraz funkcjonalnych. Korzystanie z witryny oznacza zgodę na ich zapis i odczyt wg ustawień przeglądarki.