StrokesPlus 谷歌搜索结果转https
亲测ie11可用
--清空剪切板
acSetClipboardText('')
acSendKeys("^l") --选中地址栏
acDelay(50) --延迟执行
acSendControlDown() --按下Ctrl键
acDelay(50) --延迟执行
acSendKeys("c") --复制
acSendControlUp() --松开Ctrl键
--返回剪贴板的值
local url = acGetClipboardText()
--判断是否是谷歌搜索结果
if string.find(url,'http?://www.google.com') then
--将http://www.google.com替换为https://www.google.com
url = string.gsub(url,'http?://www.google.com','https://www.google.com')
--将url复制到剪切板
acSetClipboardText(url)
acSendControlDown() --按下Ctrl键
acDelay(50) --延迟执行
acSendKeys("v") --复制
acSendControlUp() --松开Ctrl键
acSendKeys("{ENTER}") --按下回车刷新浏览器
end