zoukankan      html  css  js  c++  java
  • 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
    
  • 相关阅读:
    04.
    24
    39
    46
    72.
    21.
    logout: not found”
    Username is not in the sudoers file. This incident will be reported
    激活函数
    排序算法
  • 原文地址:https://www.cnblogs.com/mlzs/p/5519405.html
Copyright © 2011-2022 走看看