Il est possible de le faire soi-même en utilisant AppleScript et d'autres outils.
Exigence : Préférences système > Sécurité et confidentialité > Accessibilité à vérifier pour Alfred 3 .
tell application "System Events" to tell process "Safari"
with timeout of 0 seconds
set allElements to entire contents of toolbar 1 of window 1
end timeout
repeat with uiElement in allElements
if class of uiElement is button and description of uiElement is "Recent Tab List" then click uiElement
end repeat
end tell
J'utilise Alfred pour déclencher l'AppleScript en utilisant une touche de raccourci ou un mot-clé.
Voici ma méthode de travail : https://0x0.st/s_jz.zip
(J'ai initialement publié cette réponse sur GitHub )
EDIT mars 2019 :
Un AppleScript plus rapide est le suivant. Il fonctionne depuis script Editor mais je n'ai pas réussi à le faire fonctionner depuis Alfred. YMMV.
tell application "System Events"
tell process "Safari"
set extVar to "Recent Tab List"
tell first UI element of last group of last toolbar of first window
click (first button where its description = extVar)
end tell
end tell
end tell