// SCRIPT ANTI-ÉQUIPE - CHARGÉ EN PREMIER (function() { 'use strict'; // BLOQUER ABSOLUMENT TOUTES LES PAGES ÉQUIPE if (window.location.pathname === '/team' || window.location.pathname === '/team/' || window.location.pathname.startsWith('/team/') || window.location.href.includes('/team')) { console.log('🚫 BLOQUEUR ÉQUIPE ACTIF - Page équipe détectée'); // Empêcher tout autre script de s'exécuter window.__blockTeamPages = true; // Bloquer immédiatement tout chargement de script var originalAppendChild = Element.prototype.appendChild; Element.prototype.appendChild = function(child) { if (child.tagName === 'SCRIPT' && child.src && child.src.includes('strategie-script.js')) { console.log('🚫 Script strategie-script.js BLOQUÉ sur page équipe'); return child; // Ne pas l'ajouter } return originalAppendChild.call(this, child); }; return; // Arrêt immédiat } console.log('✅ Page normale détectée - scripts autorisés'); })();