StrokesPlus 谷歌搜索结果转https

Posted 魔狼再世

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了StrokesPlus 谷歌搜索结果转https相关的知识,希望对你有一定的参考价值。

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

 

以上是关于StrokesPlus 谷歌搜索结果转https的主要内容,如果未能解决你的问题,请参考以下文章

求StrokesPlus.net(鼠标手势软件) V0.4.2.5 绿色汉化版网盘资源

码农高效率工作必备工具之 StrokesPlus

码农高效率工作必备工具之 StrokesPlus

Wildfly 9 http 转 https

Firefox 打开谷歌页面提示“检测到该服务器正在将此地址的请求循环重定向”的完美解决方法 (转)

开发技巧-解决打开谷歌浏览器跳转问题