Sub testOK_avecIE()
Dim i&, x As Object
Range("A1:C1") = Array("N° onglet", "Titre onglet", "URL de l'onglet"): i = 2
With CreateObject("Shell.Application")
For Each x In .Windows
If (InStr(1, x, "Internet Explorer", 1)) Then
Cells(i, 1) = i - 1: Cells(i, 2) = x.Document.Title: Cells(i, 3) = x.locationURL
i = i + 1
End If
Next
End With
End Sub