Answers:
我给你写了一个AutoHotkey脚本,可以毫不费力地更新你的书签网址。
SetTitleMatchMode, Regex
#IfWinActive, Internet Explorer
#LButton:: ;Win+LeftClick
originalClipboard := Clipboard
Clipboard = ;empty clipboard
Send, ^l ;Select address bar
Send, ^c ;copy
ClipWait ;wait for clipboard
Click Right
Send, p ;Properties
WinWaitActive, Properties
Send, ^v ;paste
Send, {Enter}
Clipboard := originalClipboard
#IfWinActive
return
按住Windows键并单击要更新的书签。当地址栏中的URL更新时,您将看到“属性”窗口闪烁。:)