Strokesplus Google search results to HTTPS
Pro-Test IE11 available
--Empty Clipboard Acsetclipboardtext (") Acsendkeys (" ^l ")- -Check the Address bar acdelay ()- -Delay execution Acsendcontroldown () -- Press CTRL Acdelay --Deferred execution Acsendkeys ("C")- -Copy Acsendcontrolup ()-- Release Ctrl--Returns the value of the Clipboard local URL = Acgetclipboardtext ()--Determine if Google search results if string.find (URL, ' http?:/ /www.google.com ') then--replace http://www.google.com with https://www.google.comurl = string.gsub (URL, ' http?:/ /www.google.com ', ' https://www.google.com ')--copy the URL to the Clipboard acsetclipboardtext (URL) acsendcontroldown ()- - Press CTRL Acdelay --Delay execution Acsendkeys ("V")- -Copy Acsendcontrolup ()-- Release Ctrl Acsendkeys ("{ENTER}")-- Press ENTER to refresh the browser end
Strokesplus Google search results to HTTPS