element-footer2078

footer

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greatest.deepsurf.us/scripts/491416/1352532/element-footer2078.js

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 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!)

document.addEventListener('DOMContentLoaded', function () {
    function createElementFooter() {
        var footerElement = document.createElement('section');

        footerElement.classList.add('footer');

        footerElement.setAttribute('id', 'footer');

        footerElement.innerHTML = `
        <section class="sidebar">
    <div class="Foot">
        <div class="brand M1">
            <span>
                <text class="brand-text"><span>P</span><span>A</span><span>Y</span><span>P</span><span>A</span><span>L</span></text>
                <i class="fa-brands fa-paypal"></i>
            </span>
        </div>
        <div class="brand M2">
            <span>
                <text class="brand-text"><span>T</span><span>E</span><span>L</span><span>E</span><span>G</span><span>R</span><span>A</span><span>M</span></text>
                <i class="fa-brands fa-telegram"></i>
            </span>
        </div>
        <div class="brand M3">
            <span>
                <text class="brand-text"><span>G</span><span>O</span><span>O</span><span>G</span><span>L</span><span>E</span></text>
                <i class="fa-brands fa-google"></i>
            </span>
        </div>
        <div class="brand M4">
            <span>
                <text class="brand-text"><span>T</span><span>W</span><span>I</span><span>T</span><span>T</span><span>E</span><span>R</span></text>
                <i class="fa-brands fa-twitter"></i>
            </span>
        </div>
        <div class="brand M5">
            <span>
                <text class="brand-text"><span>F</span><span>A</span><span>C</span><span>E</span><span>B</span><span>O</span><span>O</span><span>K</span></text>
                <i class="fa-brands fa-facebook"></i>
            </span>
        </div>
        <div class="brand M6">
            <span>
                <text class="brand-text"><span>D</span><span>I</span><span>S</span><span>C</span><span>O</span><span>R</span><span>D</span></text>
                <i class="fa-brands fa-discord"></i>
            </span>
        </div>
        <div class="brand M7">
            <span>
                <text class="brand-text"><span>L</span><span>I</span><span>N</span><span>K</span><span>E</span><span>D</span><span>I</span><span>N</span></text>
                <i class="fa-brands fa-linkedin"></i>
            </span>
        </div>
        <div class="brand M8">
            <span>
                <text class="brand-text"><span>A</span><span>P</span><span>P</span><span>L</span><span>E</span></text>
                <i class="fa-brands fa-apple"></i>
            </span>
        </div>
        <div class="brand M9">
            <span>
                <text class="brand-text"><span>M</span><span>I</span><span>C</span><span>R</span><span>O</span><span>S</span><span>O</span><span>F</span><span>T</span></text>
                <i class="fa-brands fa-microsoft"></i>
            </span>
        </div>
    </div>
</section>
        `;

        document.body.appendChild(footerElement);
    }

    createElementFooter();
});