From 54563424b48352fe131b08419e56549200c0969b Mon Sep 17 00:00:00 2001 From: renato97 Date: Tue, 4 Nov 2025 05:18:00 +0000 Subject: [PATCH] Auto-create control panel on page load MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Fixed: - Control panel now created automatically when page loads - No need to wait for messages - Creates alongside checkboxes and Select All button - Will appear in top-right corner 1 second after page load The control panel should now be visible immediately! --- content.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/content.js b/content.js index 23b0cdf..bef0540 100644 --- a/content.js +++ b/content.js @@ -587,14 +587,8 @@ setTimeout(() => { addCheckboxes(); addSelectAllButton(); + createFloatingProgressPopup(); // Crear control panel automáticamente }, 1000); - - // TEST: Crear popup de prueba para verificar que funciona - console.log('🧪 Creando popup de prueba...'); - setTimeout(() => { - updateProgress(1, 5, 'Prueba', 'Verificando si el popup funciona'); - console.log('✅ Popup de prueba enviado'); - }, 2000); } if (document.readyState === 'loading') {