Sorunu yeniden oluşturmak için defalarca denedim, ancak yapamadım. Dolayısıyla bu çözüm, standart bir URL’yi iki kez elle girerek, kopyalayıp yapıştırıp oradan çıkarak test edildi. Sorunuzda gösterdiğiniz kötü URL'yi de kullandım.
Safari'de bu ⌘B, geçerli belgeye (pencere, sekme) basıldığında ve uygun URL'ye ayarlandığında, AppleScript çalıştırmak için AppleScript çalıştırmasını kullanarak çift URL'den geçerli bir URL oluşturmaya çalışır .
Aşağıdaki resimde gösterilen ayarlarla bir Automator Hizmeti oluşturun ve aşağıdaki şekilde kaydedin:
Kötü URL'yi Onar
Ardından, Sistem Tercihleri> Klavye> Kısayollar> Hizmetler bölümünde, Genel'e gidin,
Kötü URL'yi Düzelt'i seçin , Kısayol Ekle'yi tıklayın ve yazın:⌘B
Automator Hizmeti için AppleScript kodu :
on badURL()
try
-- # Put the bad URL on the Clipboard.
tell application "Safari"
activate
delay 0.5
tell application "System Events"
key code 37 using {command down} # ⌘L
delay 0.5
key code 8 using {command down} # ⌘C
delay 0.5
end tell
end tell
-- # Retrieve the bad URL from the Clipboard.
set theBadURL to get (the clipboard)
-- # Trim the first eight characters off of 'theBadURL'.
-- # This is done because the bad URL can have an occurrence of both 'http' and 'https' in the string in either
-- # order and by trimming off, it lessens the amount of logic necessary to build a good URL from the bad URL.
-- # The good URL, after all, is going to be built from what's after the second occurrence of either one.
-- # Test first for 'https' then 'http', as that makes more sense logically to do so.
set theBadURL to do shell script "awk 'BEGIN { print substr(\"" & theBadURL & "\", 9) }'"
-- # Build the good URL from the bad URL.
set theGoodURL to do shell script "awk -F 'https.*//' '{print $2}'<<<" & quoted form of theBadURL
if theGoodURL is not equal to "" then
set theGoodURL to "https://" & theGoodURL
else
set theGoodURL to do shell script "awk -F 'http.*//' '{print $2}'<<<" & quoted form of theBadURL
if theGoodURL is not equal to "" then
set theGoodURL to "http://" & theGoodURL
end if
end if
return theGoodURL
on error eStr number eNum
display dialog eStr & " number " & eNum buttons {"OK"} default button 1 with icon caution
return
end try
end badURL
on run
try
tell application "Safari"
activate
set thisTabsURL to (get URL of current tab of window 1)
-- # Check for bad URL and if found, build a good URL from it.
tell current application
if thisTabsURL contains "file:" then
set theGoodURL to my badURL()
tell application "Safari" to set the URL of the front document to theGoodURL
end if
end tell
end tell
on error eStr number eNum
display dialog eStr & " number " & eNum buttons {"OK"} default button 1 with icon caution
return
end try
end run
Bunu OS X 10.8.5 ve macOS 10.12 altında test ederken ve test şartlarım altında çalıştığım halde, her koşulda her zaman düzgün çalışmayabilir ve bu nedenle try
ve on error
ifadelerinin neden kodda kullanıldığını unutmayın . Umarım bu, herhangi bir hatayı uygun çıktıyla hapsedecek ve daha sonra testim sırasında gerçekleşmemiş herhangi bir hatayı düzeltecek kodu geliştirecektir .