PnW: Hide Description and Map.

Hides the nation description and map on Politics and war nation page.

// ==UserScript==
// @name         PnW: Hide Description and Map.
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Hides the nation description and map on Politics and war nation page.
// @author       Drago
// @match        https://politicsandwar.com/nation/id=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const descriptionElement = document.querySelector('.ck-content');
    if (descriptionElement) {
        descriptionElement.style.display = 'none';
    }

    const mapElement = document.querySelector('#nation-map');
    if (mapElement) {
        const mapRow = mapElement.closest('tr');
        if (mapRow) {
            const headerRow = mapRow.previousElementSibling;
            mapRow.style.display = 'none';
            if (headerRow) {
                headerRow.style.display = 'none';
            }
        }
    }
})();