Apple script to name files in chosen folder without duplicates

Hi,

My goal is to create an apple script that activates only once the Chrome save box opens.
This is so as not to have to search in the destination folder where I save the file name with its extension for duplicates.

apple script to correct:

Blockquote
– Récupère le nom de fichier avec extension de la boîte de dialogue de sauvegarde de Chrome
tell application “System Events”
set fullFileName to value of text field 1 of window 1 of process “Google Chrome”
end tell
– Attend que la boîte de dialogue de sauvegarde de Chrome apparaisse
repeat until exists of window 1 of process “Google Chrome”
delay 0.1
end repeat

– Attend que l’utilisateur entre le nom de fichier avec extension dans la boîte de dialogue de sauvegarde de Chrome
repeat until exists of text field 1 of window 1 of process “Google Chrome”
delay 0.1
end repeat

– Sépare le nom de fichier et son extension
set fileNameWithExtension to fullFileName
set fileName to text 1 thru -5 of fileNameWithExtension
set fileExtension to text -4 thru -1 of fileNameWithExtension

– Demande à l’utilisateur de choisir un dossier pour enregistrer le fichier
set targetFolder to choose folder with prompt “Sélectionnez le dossier où enregistrer le fichier”

– Initialise l’incrément
set increment to 0

– Tant que le fichier existe déjà, incrémente le compteur
repeat
set increment to increment + 1
set finalFileName to fileName & increment & fileExtension
set targetFile to (targetFolder as text) & finalFileName
if not (exists file targetFile) then exit repeat
end repeat

you can use something like this in Safari:

repeat until button  "Save"  of sheet 1 of window 1  exists

you will need to make determination of window and group for Chrome