Hide Wattpad Bottom Banner

Hides the bottom banner on Wattpad.com

// ==UserScript==
// @name         Hide Wattpad Bottom Banner
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Hides the bottom banner on Wattpad.com
// @author       remmy89
// @match        https://www.wattpad.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Get the bottom banner element
    const bottomBanner = document.querySelector('.bottom-banner.dismissible.show');

    // Check if the element exists
    if (bottomBanner) {
        // Hide the element
        bottomBanner.style.display = 'none';
    }
})();