Responde Aí - Boock

Acesso responsável ao conteúdo educacional

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Responde Aí - Boock
// @namespace    http://tampermonkey.net/
// @version      2.1
// @description  Acesso responsável ao conteúdo educacional
// @author       EmersonxD
// @match        https://www.respondeai.com.br/*
// @grant        GM_addStyle
// @grant        GM_getValue
// @grant        GM_setValue
// @license      MIT
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    // Sistema de Consentimento Ético
    const showEthicalWarning = () => {
        if (!GM_getValue('termsAccepted', false)) {
            const message = `⚠️ AVISO ÉTICO ⚠️\n
Este script fornece acesso a conteúdo premium.\n
Por favor, considere:\n
1. Use apenas para estudo pessoal\n
2. Não compartilhe soluções completas\n
3. Apoie os criadores quando possível\n
Concorda com estes termos?`;

            if (!confirm(message)) {
                window.location.href = 'https://www.respondeai.com.br/planos';
                return false;
            }
            GM_setValue('termsAccepted', true);
        }
        return true;
    };

    // Sistema Anti-Abuso
    const abusePreventionSystem = () => {
        const usageCount = GM_getValue('usageCount', 0) + 1;
        GM_setValue('usageCount', usageCount);

        if (usageCount > 100) { // Limite de 100 usos
            GM_setValue('scriptEnabled', false);
            alert('Uso excessivo detectado! O script foi desativado.');
            window.location.reload();
            return false;
        }
        return true;
    };

    // Modo de Uso Responsável
    const responsibleUsageMode = () => {
        // Bloqueia features em datas/horários específicos
        const now = new Date();
        const blockedHours = [23, 0, 1, 2, 3, 4, 5]; // 23h às 6h
        
        if (blockedHours.includes(now.getHours())) {
            alert('Uso noturno bloqueado para saúde mental');
            window.location.href = 'https://www.respondeai.com.br';
            return false;
        }
        return true;
    };

    // Sistema de Apoio aos Criadores
    const supportCreators = () => {
        if (Math.random() < 0.2) { // 20% de chance de mostrar
            const supportMessage = document.createElement('div');
            supportMessage.innerHTML = `
                <div style="position:fixed;bottom:20px;right:20px;background:white;padding:20px;border-radius:10px;box-shadow:0 0 10px rgba(0,0,0,0.2);z-index:9999">
                    <h3 style="margin:0 0 10px 0">Apoie os Criadores!</h3>
                    <p>Se encontrar útil, considere:</p>
                    <ul style="margin:10px 0">
                        <li>Comprar o plano premium</li>
                        <li>Compartilhar o site</li>
                        <li>Doar para projetos educacionais</li>
                    </ul>
                    <button onclick="this.parentElement.remove()" style="padding:5px 10px">Fechar</button>
                </div>
            `;
            document.body.appendChild(supportMessage);
        }
    };

    // Sistema Principal
    const main = () => {
        if (!showEthicalWarning()) return;
        if (!abusePreventionSystem()) return;
        if (!responsibleUsageMode()) return;
        
        // Seu código original aqui
        GM_addStyle(`
            .blur { filter: blur(0) !important; }
            .overlay { display: none !important; }
        `);
        
        supportCreators();
    };

    // Inicialização Segura
    if (GM_getValue('scriptEnabled', true)) {
        window.addEventListener('load', main);
    } else {
        alert('Script desativado por uso excessivo');
    }
})();