From 3d64e218e7e458ad4c3a092cf41bb8d937723c66 Mon Sep 17 00:00:00 2001 From: James Feng Cao Date: Tue, 16 Jul 2024 10:21:18 +0800 Subject: [PATCH] add AI engines --- en/_posts/index.xml | 4 +-- en/bookmark/index.html | 5 ++-- en/index.xml | 4 +-- en/sitemap.xml | 6 ++-- misc/ebrowser/search.json | 2 ++ misc/ebrowser/webview.js | 63 ++++++++++++++++++++++----------------- sitemap.xml | 4 +-- zh/_posts/index.xml | 4 +-- zh/bookmark/index.html | 6 ++-- zh/index.xml | 6 ++-- zh/search/index.html | 5 +++- zh/sitemap.xml | 10 +++---- zh/topposts/index.xml | 4 +-- 13 files changed, 69 insertions(+), 54 deletions(-) diff --git a/en/_posts/index.xml b/en/_posts/index.xml index dc1c64b..345513f 100644 --- a/en/_posts/index.xml +++ b/en/_posts/index.xml @@ -6,7 +6,7 @@ Recent content in _Posts on uweb browser: unlimited power Hugo en - Wed, 10 Jul 2024 11:21:12 +0800 + Sun, 14 Jul 2024 14:39:01 +0800 Text selection/processing @@ -62,7 +62,7 @@ /en/bookmark/ Mon, 16 Jan 2023 00:00:00 +0000 /en/bookmark/ - AI, chatgpt etc. google gemini komo iaskAI poe freegpt teach-anything magickpen note.ms rentry Wait for url from other devices berify: reverse image search for video Associated bookmarks Search engine files associate with bookmarks with extension ".html", which means the bookmark file if existing is appended to the page when the search engine file is on screen. "help_en.html" bookmark associates with the user manual in English. Similarly, "help_zh.html" is for Chinese manual. + AI, chatgpt etc. google gemini morphic komo iaskAI poe freegpt teach-anything magickpen note.ms rentry Wait for url from other devices berify: reverse image search for video Associated bookmarks Search engine files associate with bookmarks with extension ".html", which means the bookmark file if existing is appended to the page when the search engine file is on screen. "help_en.html" bookmark associates with the user manual in English. Similarly, "help_zh.html" is for Chinese manual. Tips diff --git a/en/bookmark/index.html b/en/bookmark/index.html index 9fce7fa..5f693e4 100644 --- a/en/bookmark/index.html +++ b/en/bookmark/index.html @@ -50,6 +50,7 @@

AI, chatgpt etc.

  • google gemini
  • +
  • morphic
  • komo
  • iaskAI
  • poe
  • @@ -93,8 +94,8 @@ SMILES2structure

    -

    Last Modified: 28 June 2024
    -add AI engines
    +

    Last Modified: 14 July 2024
    +update AI engines

    
     

    diff --git a/en/index.xml b/en/index.xml index e43f0e5..ca6dc4e 100644 --- a/en/index.xml +++ b/en/index.xml @@ -6,7 +6,7 @@ Recent content on uweb browser: unlimited power Hugo en - Fri, 12 Jul 2024 10:48:12 +0800 + Sun, 14 Jul 2024 14:39:01 +0800 Text selection @@ -76,7 +76,7 @@ /en/bookmark/ Mon, 16 Jan 2023 00:00:00 +0000 /en/bookmark/ - AI, chatgpt etc. google gemini komo iaskAI poe freegpt teach-anything magickpen note.ms rentry Wait for url from other devices berify: reverse image search for video Associated bookmarks Search engine files associate with bookmarks with extension ".html", which means the bookmark file if existing is appended to the page when the search engine file is on screen. "help_en.html" bookmark associates with the user manual in English. Similarly, "help_zh.html" is for Chinese manual. + AI, chatgpt etc. google gemini morphic komo iaskAI poe freegpt teach-anything magickpen note.ms rentry Wait for url from other devices berify: reverse image search for video Associated bookmarks Search engine files associate with bookmarks with extension ".html", which means the bookmark file if existing is appended to the page when the search engine file is on screen. "help_en.html" bookmark associates with the user manual in English. Similarly, "help_zh.html" is for Chinese manual. Tips diff --git a/en/sitemap.xml b/en/sitemap.xml index 948efa7..7a9a984 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -9,7 +9,7 @@ 2024-07-12T10:48:12+08:00 /en/ - 2024-07-12T10:48:12+08:00 + 2024-07-14T14:39:01+08:00 /en/_posts/ - 2024-07-10T11:21:12+08:00 + 2024-07-14T14:39:01+08:00 /en/bookmark/ - 2024-06-28T17:06:47+08:00 + 2024-07-14T14:39:01+08:00 { //item.setSavePath(save) if(!downloadMenus) return; - let buttons = ["OK", "Cancel", translate("Copy")]; - buttons.push(downloadMenus.filter((item, index) => (index&1) === 0)); + let buttons = ["OK", "Cancel", translate("More")]; + //buttons.push(downloadMenus.filter((item, index) => (index&1) === 0)); const button = dialog.showMessageBoxSync(win, { "type": "question", "title": translate("Download"), - "message": `Do you want to download the file?`, + "message": `Proceed to download?`, "buttons": buttons, "defaultId": 0, + cancelId: 1 }); - switch(button) { - case 0: - return; - case 1: - break; - case 2: - clipboard.writeText(item.getURL()); - break; - default: - let cmd = downloadMenus[2*button-5].replace('%u',item.getURL()); - let js = `handleQueries(\`${cmd}\`)`; - win.webContents.executeJavaScript(js,false); - } + if(0===button) return; e.preventDefault(); + if(1===button) return; + downloadContextMenu(item.getURL()); }); win.webContents.on('console-message',cbConsoleMsg); @@ -368,6 +359,18 @@ function menuSelection(menuTemplate, text){ }); } } +function menuDownload(menuTemplate, labelprefix, linkUrl){ + for(let i=0; i { + let cmd = downloadMenus[i+1].replace('%u',linkUrl); + let js = `handleQueries(\`${cmd}\`)`; + win.webContents.executeJavaScript(js,false); + } + }); + } +} function menuArray(labelprefix, linkUrl){ let menuTemplate = [ { @@ -389,18 +392,8 @@ function menuArray(labelprefix, linkUrl){ } }, ]; - if(downloadMenus){ - for(let i=0; i { - let cmd = downloadMenus[i+1].replace('%u',linkUrl); - let js = `handleQueries(\`${cmd}\`)`; - win.webContents.executeJavaScript(js,false); - } - }); - } - } + if(downloadMenus) + menuDownload(menuTemplate, labelprefix, linkUrl); return menuTemplate; } @@ -692,6 +685,20 @@ function help(){ win.webContents.executeJavaScript(js,false) } +async function downloadContextMenu(url){ + let mTemplate = + [{label:url,enabled:false}, + { + label: translate('Copy'), + click: () => { + clipboard.writeText(url); + } + }, + ]; + menuDownload(mTemplate, "", url); + const contextMenu = Menu.buildFromTemplate(mTemplate); + contextMenu.popup(); +} async function initTranslateRes(lang){ let basename=path.join(__dirname,"translate."); let fname = basename+lang; diff --git a/sitemap.xml b/sitemap.xml index 6b7cf0b..ae8b0f6 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -4,14 +4,14 @@ /en/sitemap.xml - 2024-07-12T10:48:12+08:00 + 2024-07-14T14:39:01+08:00 /zh/sitemap.xml - 2024-07-12T10:49:39+08:00 + 2024-07-16T10:20:35+08:00 diff --git a/zh/_posts/index.xml b/zh/_posts/index.xml index ea4b7ca..c81c9a2 100644 --- a/zh/_posts/index.xml +++ b/zh/_posts/index.xml @@ -6,7 +6,7 @@ Recent content in _Posts on 超微浏览器: 威、快、高效、极致优化 Hugo zh - Fri, 12 Jul 2024 10:49:39 +0800 + Sun, 14 Jul 2024 15:04:43 +0800 操作选中(富)文本/元素 @@ -83,7 +83,7 @@ /zh/bookmark/ Wed, 18 May 2022 00:00:00 +0000 /zh/bookmark/ - 所有书签都可通过"长按链接->命令->书签"保存链接为书签。书签菜单可至特色服务网页安装。 AI/chatGPT: kimi yuanbao taichu deepseek 文本/文件共享 网络剪贴板 txtpad getnote cmd.im Wait for url from other devices gamezop 分类书签模板 点击以下链接可安装模板至分类书签目录。保存至“小说”类别的网站会自动使用阅读模式。 "小说.html": 自动使用阅读模式 href="i:0hbookmark/txt.html:../searchurl/bookmark/viewtxt.html">"txt.html": 在线阅读下载直链(txt/html) 镜像 google镜像 Google等镜像 Termux命令书签 以下书签需"长按以下链接->新窗口打开"才能在此网页正常执行。 需安装定制版termux及相应工具, 计算器bc 全能计算器bc + 所有书签都可通过"长按链接->命令->书签"保存链接为书签。书签菜单可至特色服务网页安装。 AI/chatGPT: kimi yuanbao taichu zhida iflow deepseek 文本/文件共享 网络剪贴板 txtpad getnote cmd.im Wait for url from other devices gamezop 分类书签模板 点击以下链接可安装模板至分类书签目录。保存至“小说”类别的网站会自动使用阅读模式。 "小说.html": 自动使用阅读模式 href="i:0hbookmark/txt.html:../searchurl/bookmark/viewtxt.html">"txt.html": 在线阅读下载直链(txt/html) 镜像 google镜像 Google等镜像 Termux命令书签 以下书签需"长按以下链接->新窗口打开"才能在此网页正常执行。 需安装定制版termux及相应工具, 计算器bc 全能计算器bc 利用用户自定义样式屏蔽不良信息 diff --git a/zh/bookmark/index.html b/zh/bookmark/index.html index 164b427..dc8c298 100644 --- a/zh/bookmark/index.html +++ b/zh/bookmark/index.html @@ -53,6 +53,8 @@ AI/chatGPT:

  • kimi
  • yuanbao
  • taichu
  • +
  • zhida
  • +
  • iflow
  • deepseek

文本/文件共享

@@ -78,8 +80,8 @@ AI/chatGPT:

全能计算器bc

-

Last Modified: 29 June 2024
-use s2ta.js to be consistent with ebrowser
+

Last Modified: 14 July 2024
+update AI engines


 

diff --git a/zh/index.xml b/zh/index.xml index 3f06a6a..64d356c 100644 --- a/zh/index.xml +++ b/zh/index.xml @@ -6,7 +6,7 @@ Recent content on 超微浏览器: 威、快、高效、极致优化 Hugo zh - Fri, 12 Jul 2024 10:49:39 +0800 + Tue, 16 Jul 2024 10:20:35 +0800 操作选中(富)文本/元素 @@ -55,7 +55,7 @@ /zh/search/ Thu, 28 Jul 2022 00:00:00 +0000 /zh/search/ - 超微浏览器下点击搜索引擎配置链接可自动添加到主屏。ebrowser下点击后可选择取消,此时地址栏会显示添加搜索引擎的i:内部链接,将其中引擎名改短(比如两个字母)作为快捷输入然后回车执行内部链接即可。 AI引擎: tiangong:https://www.tiangong.cn/result?q= metaso:https://metaso.cn/?q= kaisou:https://kaisouai.com?q= felo:https://felo.ai/search?q= 360AI:https://so.360.com/s?q= CSDN:https://chat.csdn.net?q= 十号AI:https://retardphobia.moebh.org/ui/search?mode=1&q= xunfei:i:0/js/s2ta.js:https://xinghuo.xfyun.cn/desk?%s baiduAI:i:0/js/s2editable.js:https://chat.baidu.com/?%s chatglm:i:0/js/s2ta.js:https://chatglm.cn/main/detail?%s doubao:i:0/js/s2ta.js:https://www.doubao.com/chat/?%s baichuan:i:0/js/s2ta.js:https://www.baichuan-ai.com/chat?%s bocha:i:0/js/s2ta.js:https://bochaai.com/?%s miku:i:0/js/s2ta.js:https://www.hellomiku.com?%s 镜像: google:i:0mhttps://loud-moth-21.deno.dev/:https://google.com/search?q=%s 推荐引擎(将下面文本添加到home5.search中): 顺序:i:40%s_00 apkdl:https://apkdl.in/app/search?q= apkbog:https://www.apkbog.com/en/apks/search/ 知乎:https://www.zhihu.com/search?type=content&q= bilibili:https://m.bilibili.com/search?keyword= 抖音:https://www.douyin.com/search/%s?source=normal_search 高德地图:https://ditu.amap.com/search?query= 京东:https://search.jd.com/Search?enc=utf-8&keyword= 淘宝:https://taobao.com/search?q= 苏宁:https://m.suning.com/search/%s/ 拼多多:http://mobile.yangkeduo.com/search_result.html?search_key= 优惠券:http://mall.yhm11.com/index.php?r=l&kw= 百度图片:http://image.baidu.com/search/index?tn=baiduimage&word= bing图片:http://bing.com/images/search?q= 搜狗表情:https://pic.sogou.com/pic/emo/searchList.jsp?keyword= 微信:https://weixin.sogou.com/weixin?type=2&s_from=input&query= 大百科全书:http://h.bkzx.cn/search?sublibId=2&query= wolfram:https://www.wolframalpha.com/input/?i= bookmarkearth:https://www.bookmarkearth.com/s/search?q= 答案答案:https://daandaan.com/search?q= 问答库:https://m.asklib.com/s/ ACG:http://www.acgsou.com/?bound=content&local=1&keyword= 动漫花园:https://share.dmhy.org/topics/list?keyword= 末日动漫:https://share.acgnx.se/search.php?keyword= 慢慢买:http://s.manmanbuy.com/default.aspx?key= 购物党:https://gwdang.com/search?s_product= 快搜比价:https://ks.pconline.com.cn/product.shtml?q= 比一比价:http://www.b1bj.com/s.aspx?key= 盒子比价:http://www.boxz.com/search/ buzz:https://search.buzz.im/?search= toplinks:https://www.toplinks.cc/s/?keyword= 注:顺序搜索需文件engine.search,格式与home5.search相同,但其中url关键词部分必须用“%s”标识。用此引擎搜索的网页按前进键自动用下一引擎搜索。 除了批量添加引擎外,超微可以将任意支持搜索的网址添加为搜索引擎。方法如下: 访问网站并搜索。 按菜单键,没有的话可长按底部工具条前进按钮弹出菜单。 选择"添加为搜索引擎",对话框中将出现的地址适当编辑。不少网址后半部分为用"&"分割的等式,将包含搜索条目的等式移动到最后,删除搜索条目本身,其余等式可删可留。若无等式,一般在网址中直接删除搜索条目本身即可。 常用引擎,供用户查漏添加: google:https://google.com/search?q= 必应:https://www.bing.com/search?q= 必应CN:https://cn.bing.com/search?q= 百度:https://m.baidu.com/s?wd= Fsou:https://fsoufsou.com/search?q= seekr:https://www.seekr.com/search?query= sese:https://sese.yyj.moe/search?q= you:https://you.com/search?q= 神马:http://m.sm.cn/s?q= 夸克:https://quark.sm.cn/s?q= 无追:https://www.wuzhuiso.com/s?q= 360:http://www.so.com/s?q= 搜狗:https://m.sogou.com/web?query= ecosia:https://www.ecosia.org/search?q= + 超微浏览器下点击搜索引擎配置链接可自动添加到主屏。ebrowser下点击后可选择取消,此时地址栏会显示添加搜索引擎的i:内部链接,将其中引擎名改短(比如两个字母)作为快捷输入然后回车执行内部链接即可。 AI引擎: tiangong:https://www.tiangong.cn/result?q= metaso:https://metaso.cn/?q= kaisou:https://kaisouai.com?q= felo:https://felo.ai/search?q= 360AI:https://so.360.com/s?q= bagoodex:https://bagoodex.io/search?id= bagoodexchat:https://bagoodex.io/chat?q= mindfulq:https://www.mindfulq.com/s?q= CSDN:https://chat.csdn.net?q= 十号AI:https://retardphobia.moebh.org/ui/search?mode=1&q= xunfei:i:0/js/s2ta.js:https://xinghuo.xfyun.cn/desk?%s baiduAI:i:0/js/s2editable.js:https://chat.baidu.com/?%s chatglm:i:0/js/s2ta.js:https://chatglm.cn/main/detail?%s doubao:i:0/js/s2ta.js:https://www.doubao.com/chat/?%s baichuan:i:0/js/s2ta.js:https://www.baichuan-ai.com/chat?%s bocha:i:0/js/s2ta.js:https://bochaai.com/?%s miku:i:0/js/s2ta.js:https://www.hellomiku.com?%s 镜像: google:i:0mhttps://loud-moth-21.deno.dev/:https://google.com/search?q=%s 推荐引擎(将下面文本添加到home5.search中): 顺序:i:40%s_00 apkdl:https://apkdl.in/app/search?q= apkbog:https://www.apkbog.com/en/apks/search/ 知乎:https://www.zhihu.com/search?type=content&q= bilibili:https://m.bilibili.com/search?keyword= 抖音:https://www.douyin.com/search/%s?source=normal_search 高德地图:https://ditu.amap.com/search?query= 京东:https://search.jd.com/Search?enc=utf-8&keyword= 淘宝:https://taobao.com/search?q= 苏宁:https://m.suning.com/search/%s/ 拼多多:http://mobile.yangkeduo.com/search_result.html?search_key= 优惠券:http://mall.yhm11.com/index.php?r=l&kw= 百度图片:http://image.baidu.com/search/index?tn=baiduimage&word= bing图片:http://bing.com/images/search?q= 搜狗表情:https://pic.sogou.com/pic/emo/searchList.jsp?keyword= 微信:https://weixin.sogou.com/weixin?type=2&s_from=input&query= 大百科全书:http://h.bkzx.cn/search?sublibId=2&query= wolfram:https://www.wolframalpha.com/input/?i= bookmarkearth:https://www.bookmarkearth.com/s/search?q= 答案答案:https://daandaan.com/search?q= 问答库:https://m.asklib.com/s/ ACG:http://www.acgsou.com/?bound=content&local=1&keyword= 动漫花园:https://share.dmhy.org/topics/list?keyword= 末日动漫:https://share.acgnx.se/search.php?keyword= 慢慢买:http://s.manmanbuy.com/default.aspx?key= 购物党:https://gwdang.com/search?s_product= 快搜比价:https://ks.pconline.com.cn/product.shtml?q= 比一比价:http://www.b1bj.com/s.aspx?key= 盒子比价:http://www.boxz.com/search/ buzz:https://search.buzz.im/?search= toplinks:https://www.toplinks.cc/s/?keyword= 注:顺序搜索需文件engine.search,格式与home5.search相同,但其中url关键词部分必须用“%s”标识。用此引擎搜索的网页按前进键自动用下一引擎搜索。 除了批量添加引擎外,超微可以将任意支持搜索的网址添加为搜索引擎。方法如下: 访问网站并搜索。 按菜单键,没有的话可长按底部工具条前进按钮弹出菜单。 选择"添加为搜索引擎",对话框中将出现的地址适当编辑。不少网址后半部分为用"&"分割的等式,将包含搜索条目的等式移动到最后,删除搜索条目本身,其余等式可删可留。若无等式,一般在网址中直接删除搜索条目本身即可。 常用引擎,供用户查漏添加: google:https://google.com/search?q= 必应:https://www.bing.com/search?q= 必应CN:https://cn.bing.com/search?q= 百度:https://m.baidu.com/s?wd= Fsou:https://fsoufsou.com/search?q= seekr:https://www.seekr.com/search?query= sese:https://sese.yyj.moe/search?q= you:https://you.com/search?q= 神马:http://m.sm.cn/s?q= 夸克:https://quark.sm.cn/s?q= 无追:https://www.wuzhuiso.com/s?q= html5应用 @@ -111,7 +111,7 @@ /zh/bookmark/ Wed, 18 May 2022 00:00:00 +0000 /zh/bookmark/ - 所有书签都可通过"长按链接->命令->书签"保存链接为书签。书签菜单可至特色服务网页安装。 AI/chatGPT: kimi yuanbao taichu deepseek 文本/文件共享 网络剪贴板 txtpad getnote cmd.im Wait for url from other devices gamezop 分类书签模板 点击以下链接可安装模板至分类书签目录。保存至“小说”类别的网站会自动使用阅读模式。 "小说.html": 自动使用阅读模式 href="i:0hbookmark/txt.html:../searchurl/bookmark/viewtxt.html">"txt.html": 在线阅读下载直链(txt/html) 镜像 google镜像 Google等镜像 Termux命令书签 以下书签需"长按以下链接->新窗口打开"才能在此网页正常执行。 需安装定制版termux及相应工具, 计算器bc 全能计算器bc + 所有书签都可通过"长按链接->命令->书签"保存链接为书签。书签菜单可至特色服务网页安装。 AI/chatGPT: kimi yuanbao taichu zhida iflow deepseek 文本/文件共享 网络剪贴板 txtpad getnote cmd.im Wait for url from other devices gamezop 分类书签模板 点击以下链接可安装模板至分类书签目录。保存至“小说”类别的网站会自动使用阅读模式。 "小说.html": 自动使用阅读模式 href="i:0hbookmark/txt.html:../searchurl/bookmark/viewtxt.html">"txt.html": 在线阅读下载直链(txt/html) 镜像 google镜像 Google等镜像 Termux命令书签 以下书签需"长按以下链接->新窗口打开"才能在此网页正常执行。 需安装定制版termux及相应工具, 计算器bc 全能计算器bc 利用用户自定义样式屏蔽不良信息 diff --git a/zh/search/index.html b/zh/search/index.html index 3d15ab0..386859d 100644 --- a/zh/search/index.html +++ b/zh/search/index.html @@ -54,6 +54,9 @@

kaisou:https://kaisouai.com?q=

felo:https://felo.ai/search?q=

360AI:https://so.360.com/s?q=

+

bagoodex:https://bagoodex.io/search?id=

+

bagoodexchat:https://bagoodex.io/chat?q=

+

mindfulq:https://www.mindfulq.com/s?q=

CSDN:https://chat.csdn.net?q=

十号AI:https://retardphobia.moebh.org/ui/search?mode=1&q=

xunfei:i:0/js/s2ta.js:https://xinghuo.xfyun.cn/desk?%s

@@ -326,7 +329,7 @@ -

Last Modified: 9 July 2024
+

Last Modified: 16 July 2024
update AI engines

24.02.26 添加网盘搜索引擎
 
diff --git a/zh/sitemap.xml b/zh/sitemap.xml index b628ec1..0859bd3 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -3,7 +3,7 @@ xmlns:xhtml="http://www.w3.org/1999/xhtml"> /zh/_posts/ - 2024-07-12T10:49:39+08:00 + 2024-07-14T15:04:43+08:00 /zh/ - 2024-07-12T10:49:39+08:00 + 2024-07-16T10:20:35+08:00 /zh/topposts/ - 2024-07-09T11:56:44+08:00 + 2024-07-16T10:20:35+08:00 /zh/search/ - 2024-07-09T11:56:44+08:00 + 2024-07-16T10:20:35+08:00 2024-05-20T11:27:34+08:00 /zh/bookmark/ - 2024-06-29T22:26:41+08:00 + 2024-07-14T15:04:43+08:00 Recent content in Topposts on 超微浏览器: 威、快、高效、极致优化 Hugo zh - Tue, 09 Jul 2024 11:56:44 +0800 + Tue, 16 Jul 2024 10:20:35 +0800 浏览器多搜索引擎一键直达 /zh/search/ Thu, 28 Jul 2022 00:00:00 +0000 /zh/search/ - 超微浏览器下点击搜索引擎配置链接可自动添加到主屏。ebrowser下点击后可选择取消,此时地址栏会显示添加搜索引擎的i:内部链接,将其中引擎名改短(比如两个字母)作为快捷输入然后回车执行内部链接即可。 AI引擎: tiangong:https://www.tiangong.cn/result?q= metaso:https://metaso.cn/?q= kaisou:https://kaisouai.com?q= felo:https://felo.ai/search?q= 360AI:https://so.360.com/s?q= CSDN:https://chat.csdn.net?q= 十号AI:https://retardphobia.moebh.org/ui/search?mode=1&q= xunfei:i:0/js/s2ta.js:https://xinghuo.xfyun.cn/desk?%s baiduAI:i:0/js/s2editable.js:https://chat.baidu.com/?%s chatglm:i:0/js/s2ta.js:https://chatglm.cn/main/detail?%s doubao:i:0/js/s2ta.js:https://www.doubao.com/chat/?%s baichuan:i:0/js/s2ta.js:https://www.baichuan-ai.com/chat?%s bocha:i:0/js/s2ta.js:https://bochaai.com/?%s miku:i:0/js/s2ta.js:https://www.hellomiku.com?%s 镜像: google:i:0mhttps://loud-moth-21.deno.dev/:https://google.com/search?q=%s 推荐引擎(将下面文本添加到home5.search中): 顺序:i:40%s_00 apkdl:https://apkdl.in/app/search?q= apkbog:https://www.apkbog.com/en/apks/search/ 知乎:https://www.zhihu.com/search?type=content&q= bilibili:https://m.bilibili.com/search?keyword= 抖音:https://www.douyin.com/search/%s?source=normal_search 高德地图:https://ditu.amap.com/search?query= 京东:https://search.jd.com/Search?enc=utf-8&keyword= 淘宝:https://taobao.com/search?q= 苏宁:https://m.suning.com/search/%s/ 拼多多:http://mobile.yangkeduo.com/search_result.html?search_key= 优惠券:http://mall.yhm11.com/index.php?r=l&kw= 百度图片:http://image.baidu.com/search/index?tn=baiduimage&word= bing图片:http://bing.com/images/search?q= 搜狗表情:https://pic.sogou.com/pic/emo/searchList.jsp?keyword= 微信:https://weixin.sogou.com/weixin?type=2&s_from=input&query= 大百科全书:http://h.bkzx.cn/search?sublibId=2&query= wolfram:https://www.wolframalpha.com/input/?i= bookmarkearth:https://www.bookmarkearth.com/s/search?q= 答案答案:https://daandaan.com/search?q= 问答库:https://m.asklib.com/s/ ACG:http://www.acgsou.com/?bound=content&local=1&keyword= 动漫花园:https://share.dmhy.org/topics/list?keyword= 末日动漫:https://share.acgnx.se/search.php?keyword= 慢慢买:http://s.manmanbuy.com/default.aspx?key= 购物党:https://gwdang.com/search?s_product= 快搜比价:https://ks.pconline.com.cn/product.shtml?q= 比一比价:http://www.b1bj.com/s.aspx?key= 盒子比价:http://www.boxz.com/search/ buzz:https://search.buzz.im/?search= toplinks:https://www.toplinks.cc/s/?keyword= 注:顺序搜索需文件engine.search,格式与home5.search相同,但其中url关键词部分必须用“%s”标识。用此引擎搜索的网页按前进键自动用下一引擎搜索。 除了批量添加引擎外,超微可以将任意支持搜索的网址添加为搜索引擎。方法如下: 访问网站并搜索。 按菜单键,没有的话可长按底部工具条前进按钮弹出菜单。 选择"添加为搜索引擎",对话框中将出现的地址适当编辑。不少网址后半部分为用"&"分割的等式,将包含搜索条目的等式移动到最后,删除搜索条目本身,其余等式可删可留。若无等式,一般在网址中直接删除搜索条目本身即可。 常用引擎,供用户查漏添加: google:https://google.com/search?q= 必应:https://www.bing.com/search?q= 必应CN:https://cn.bing.com/search?q= 百度:https://m.baidu.com/s?wd= Fsou:https://fsoufsou.com/search?q= seekr:https://www.seekr.com/search?query= sese:https://sese.yyj.moe/search?q= you:https://you.com/search?q= 神马:http://m.sm.cn/s?q= 夸克:https://quark.sm.cn/s?q= 无追:https://www.wuzhuiso.com/s?q= 360:http://www.so.com/s?q= 搜狗:https://m.sogou.com/web?query= ecosia:https://www.ecosia.org/search?q= + 超微浏览器下点击搜索引擎配置链接可自动添加到主屏。ebrowser下点击后可选择取消,此时地址栏会显示添加搜索引擎的i:内部链接,将其中引擎名改短(比如两个字母)作为快捷输入然后回车执行内部链接即可。 AI引擎: tiangong:https://www.tiangong.cn/result?q= metaso:https://metaso.cn/?q= kaisou:https://kaisouai.com?q= felo:https://felo.ai/search?q= 360AI:https://so.360.com/s?q= bagoodex:https://bagoodex.io/search?id= bagoodexchat:https://bagoodex.io/chat?q= mindfulq:https://www.mindfulq.com/s?q= CSDN:https://chat.csdn.net?q= 十号AI:https://retardphobia.moebh.org/ui/search?mode=1&q= xunfei:i:0/js/s2ta.js:https://xinghuo.xfyun.cn/desk?%s baiduAI:i:0/js/s2editable.js:https://chat.baidu.com/?%s chatglm:i:0/js/s2ta.js:https://chatglm.cn/main/detail?%s doubao:i:0/js/s2ta.js:https://www.doubao.com/chat/?%s baichuan:i:0/js/s2ta.js:https://www.baichuan-ai.com/chat?%s bocha:i:0/js/s2ta.js:https://bochaai.com/?%s miku:i:0/js/s2ta.js:https://www.hellomiku.com?%s 镜像: google:i:0mhttps://loud-moth-21.deno.dev/:https://google.com/search?q=%s 推荐引擎(将下面文本添加到home5.search中): 顺序:i:40%s_00 apkdl:https://apkdl.in/app/search?q= apkbog:https://www.apkbog.com/en/apks/search/ 知乎:https://www.zhihu.com/search?type=content&q= bilibili:https://m.bilibili.com/search?keyword= 抖音:https://www.douyin.com/search/%s?source=normal_search 高德地图:https://ditu.amap.com/search?query= 京东:https://search.jd.com/Search?enc=utf-8&keyword= 淘宝:https://taobao.com/search?q= 苏宁:https://m.suning.com/search/%s/ 拼多多:http://mobile.yangkeduo.com/search_result.html?search_key= 优惠券:http://mall.yhm11.com/index.php?r=l&kw= 百度图片:http://image.baidu.com/search/index?tn=baiduimage&word= bing图片:http://bing.com/images/search?q= 搜狗表情:https://pic.sogou.com/pic/emo/searchList.jsp?keyword= 微信:https://weixin.sogou.com/weixin?type=2&s_from=input&query= 大百科全书:http://h.bkzx.cn/search?sublibId=2&query= wolfram:https://www.wolframalpha.com/input/?i= bookmarkearth:https://www.bookmarkearth.com/s/search?q= 答案答案:https://daandaan.com/search?q= 问答库:https://m.asklib.com/s/ ACG:http://www.acgsou.com/?bound=content&local=1&keyword= 动漫花园:https://share.dmhy.org/topics/list?keyword= 末日动漫:https://share.acgnx.se/search.php?keyword= 慢慢买:http://s.manmanbuy.com/default.aspx?key= 购物党:https://gwdang.com/search?s_product= 快搜比价:https://ks.pconline.com.cn/product.shtml?q= 比一比价:http://www.b1bj.com/s.aspx?key= 盒子比价:http://www.boxz.com/search/ buzz:https://search.buzz.im/?search= toplinks:https://www.toplinks.cc/s/?keyword= 注:顺序搜索需文件engine.search,格式与home5.search相同,但其中url关键词部分必须用“%s”标识。用此引擎搜索的网页按前进键自动用下一引擎搜索。 除了批量添加引擎外,超微可以将任意支持搜索的网址添加为搜索引擎。方法如下: 访问网站并搜索。 按菜单键,没有的话可长按底部工具条前进按钮弹出菜单。 选择"添加为搜索引擎",对话框中将出现的地址适当编辑。不少网址后半部分为用"&"分割的等式,将包含搜索条目的等式移动到最后,删除搜索条目本身,其余等式可删可留。若无等式,一般在网址中直接删除搜索条目本身即可。 常用引擎,供用户查漏添加: google:https://google.com/search?q= 必应:https://www.bing.com/search?q= 必应CN:https://cn.bing.com/search?q= 百度:https://m.baidu.com/s?wd= Fsou:https://fsoufsou.com/search?q= seekr:https://www.seekr.com/search?query= sese:https://sese.yyj.moe/search?q= you:https://you.com/search?q= 神马:http://m.sm.cn/s?q= 夸克:https://quark.sm.cn/s?q= 无追:https://www.wuzhuiso.com/s?q= 配置总览