Promo Codes Button

Добавляет кнопку для быстрого перехода на страницу промокодов

// ==UserScript==
// @name         Promo Codes Button
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Добавляет кнопку для быстрого перехода на страницу промокодов
// @author       bemore
// @match        https://astars.club/*
// @match        https://asstars1.astars.club/*
// @match        https://animestars.org/*
// @match        https://as1.astars.club/*
// @match        https://asstars.tv/*
// @license      bmr
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Создаем кнопку
    const button = document.createElement('button');
    button.innerText = 'Промокоды';
    button.style.position = 'fixed';
    button.style.bottom = '10px';
    button.style.left = '10px';
    button.style.zIndex = '1000';
    button.style.padding = '12px 20px';
    button.style.background = 'linear-gradient(135deg, #3498db, #2980b9)';
    button.style.color = 'white';
    button.style.border = 'none';
    button.style.borderRadius = '15px';
    button.style.boxShadow = '0 0 10px rgba(52, 152, 219, 0.7)';
    button.style.fontSize = '14px';
    button.style.fontWeight = 'bold';
    button.style.cursor = 'pointer';
    button.style.transition = 'all 0.3s ease-in-out';

    // Добавляем эффект при наведении
    button.addEventListener('mouseover', () => {
        button.style.transform = 'scale(1.05)';
    });

    button.addEventListener('mouseout', () => {
        button.style.transform = 'scale(1)';
    });

    // Добавляем обработчик клика
    button.addEventListener('click', () => {
        window.location.href = 'https://asstars.tv/promo_codes';
    });

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址