哪个ahk脚本允许Chrome打开上次访问的网页?我没有要求重新打开关闭标签,这在Chrome上很容易,我要求快捷方式打开我重新打开Chrome时访问的最后一页,而不是将Chrome设置为默认设置。
答案 0 :(得分:0)
以下是基于Darka评论的AutoHotkey脚本:
版本1:
SetTitleMatchMode, 2
WinActivate, Google Chrome
CheckChromeWindow:
IfWinActive, Google Chrome
{
Send, ^h
}
else
{
Goto, CheckChromeWindow
}
CheckHistoryPage:
IfWinActive, History - Google Chrome
{
Send, {Tab 4}
Send, {Enter}
}
else
{
Goto, CheckHistoryPage
}
修改强>
版本2:
SetTitleMatchMode, 2
WinActivate, Google Chrome
CheckChromeWindow:
IfWinActive, Google Chrome
{
Send, ^h
}
else
{
Goto, CheckChromeWindow
}
CheckHistoryPage:
IfWinActive, History - Google Chrome
{
Send, {Tab 5}
Send, {Enter}
}
else
{
Goto, CheckHistoryPage
}
版本3:
SetTitleMatchMode, 2
WinActivate, Google Chrome
CheckChromeWindow:
IfWinActive, Google Chrome
{
Send, ^h
}
else
{
Goto, CheckChromeWindow
}
CheckHistoryPage:
IfWinActive, History - Google Chrome
{
Send, {Tab 4}
Send, {Enter}
Send, {Tab}
Send, {Enter}
}
else
{
Goto, CheckHistoryPage
}
如果你想用热键运行那段代码(在我们的例子中是 CTRL + Alt + z ),那么把代码放在{{1并且在pu之后将所有代码放在脚本的末尾:
;some code
此外,始终使用来自http://ahkscript.org/的AutoHotkey及其文档(当前最新版本,新官方网站)! Autohotkey.com上的AutoHotkey及其文档已过时,使用它们可能会遇到一些问题!