Кнопка "Бабло" на zelenka.guru

Добавляет кнопку "Бабло" на ЛОЛЗ

// ==UserScript==
// @name         Кнопка "Бабло" на zelenka.guru
// @namespace    http://tampermonkey.net/
// @description  Добавляет кнопку "Бабло" на ЛОЛЗ
// @author       stealyourbrain
// @license      MIT
// @match        https://zelenka.guru/*
// @version 0.0.1.20231120082651
// ==/UserScript==

(function() {
    'use strict';

    // Создание кнопки (не надо это вам)
    const moneyButton = document.createElement('a');
    moneyButton.textContent = '$Бабло$'; // тут название кнопки типо пон
    moneyButton.href = 'https://zelenka.guru/forums/contests/';
    moneyButton.classList.add('money-button');

    // Стили для кнопки с новыми координатами
    moneyButton.style.position = 'fixed';
    moneyButton.style.left = '165px'; // Координата x
    moneyButton.style.top = '440px'; // Координата y
    moneyButton.style.backgroundColor = '#4CAF50';
    moneyButton.style.color = 'white';
    moneyButton.style.padding = '10px 20px';
    moneyButton.style.border = 'none';
    moneyButton.style.borderRadius = '5px';
    moneyButton.style.cursor = 'pointer';

    // Добавление кнопки на страницу (вам это не надо)
    document.body.appendChild(moneyButton);
})();