IE9插件可以快速更新书签


1

我的书签指的是我在网站上的哪个页面,而不是网站本身,例如我想要了解的有五年页面价值的博客。当我完成阅读时,我会复制URL,打开书签的属性,然后粘贴URL,以便下次返回此页面。我想简化这个。

我的第一个想法是一个插件,让我右键单击一个书签,然后选择更新到当前页面。是否有IE9插件可以执行此操作?

Answers:


1

我给你写了一个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更新时,您将看到“属性”窗口闪烁。:)


下载: http://ahk.igalvez.net/IEUpdateBookmark.exe,784 KB


美丽!感谢那!我将不得不研究AutoHotkey。
手工电子食品
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.