感觉没有大佬做,就是弹出个框子然后选择搜索引擎聚合搜索的工具,个人很喜欢同时搜索n个引擎,做个小工具希望老哥们能提出一些改进意见
Bing:=Baidu:=Google:=zhihu:=Github:=0
!z::
gui,Destroy
Gui Add, Text, w-2 h-2 section
Gui Add, Edit, ys-4 w300 vKeywords gSubmit
Gui,Add,Button,ys-4 gSearch,Search
Gui Add, Text, xs-4 section
For k,v in ["Bing","Baidu","Google","zhihu","Github"]
Gui Add, CheckBox, x+5 v%v% gSubmit,%v%
gui,Show
return
Search:
Keywords:=RegExReplace(Keywords,"%","`%25")
if Google=1
run,https://www.google.com/search?q=%Keywords%
if Baidu=1
run,https://www.baidu.com/s?wd=%Keywords%
if zhihu=1
run,https://www.zhihu.com/search?type=content&q=%Keywords%
if Bing=1
run,https://www.bing.com/search?FORM=INCOH2&PC=1VIV&PTAG=ICO-c9d0fc87&q=%Keywords%
if Github=1
run,https://github.com/search?utf8=`%E2`%9C`%93&q=%Keywords%
return
Submit:
gui,Submit,NoHide
return
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
不错,简洁便利。
感谢大佬