This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Variables globales | |
| let previousPathname = ''; | |
| let observer = null; | |
| let dropdownInjectionTimeout = null; | |
| // Fonction principale d'observation des changements d'URL | |
| function observeUrlChanges() { | |
| // Arrêter l'observateur précédent si existant | |
| if (observer) observer.disconnect(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Couleurs pour le formatage | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| BLUE='\033[0;34m' | |
| NC='\033[0m' | |
| # Variables globales | |
| SEARCH_DIR="" |