-
Commands
diff --git a/en/urls/index.html b/en/urls/index.html
index a13b38b..f060e23 100644
--- a/en/urls/index.html
+++ b/en/urls/index.html
@@ -47,7 +47,7 @@
- Click the following links to install url services with uweb browser or ebrowser . Force exit and re-launch the app , then long press the "image" button to popup the menu.
+ Click the following links to install url services with uweb browser . Force exit and re-launch the app , then long press the "image" button to popup the menu.
Fullscreen video:i:5f
Redirect/edit:e:
Save2autocomplete:i:51:
@@ -108,8 +108,8 @@
djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=
-Last Modified: 4 July 2024
-update AI engines
+
Last Modified: 3 May 2024
+enhance execCmd_user() with internal links
diff --git a/en/useragents/index.html b/en/useragents/index.html
deleted file mode 100644
index ac99f50..0000000
--- a/en/useragents/index.html
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
-
-
- User agents
-
-
-
-
-
-
-
-Last Modified: 10 July 2024
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/misc/ebrowser/README.md b/misc/ebrowser/README.md
index c77d1e6..6837f73 100644
--- a/misc/ebrowser/README.md
+++ b/misc/ebrowser/README.md
@@ -99,7 +99,6 @@ The other commands are defined in "mapkeys.json", which will map keys to address
- "mapkeys.json": keys-addressbarCommands pairs. The addressbar commands are multiple lines of address bar command separated by "\n".
- "proxy.json": name-[ProxyConfig](https://www.electronjs.org/docs/latest/api/structures/proxy-config) pairs
- "uas.json" : name-useragent pairs
-- "menu.json": array of strings for [user-defined menus](https://jamesfengcao.gitlab.io/uweb/en/urls/index.html). The array has submenu name and address bar commands alternately.
- "download.json" : array of strings to define buttons for downloading dialog. The even-indexed strings are texts to show on the button. The odd-indexed strings are address bar commands with "%u" as the downloaded url.
#### Javascript at three levels
diff --git a/misc/ebrowser/index.html b/misc/ebrowser/index.html
index dc35e21..2c0f51e 100644
--- a/misc/ebrowser/index.html
+++ b/misc/ebrowser/index.html
@@ -531,16 +531,14 @@ You should have received a copy of the GNU General Public License along with thi
function internalLink(url){
let cmd = url.charCodeAt(2);
let subcmd = url.charCodeAt(3);
- let iColon = url.indexOf(':',5);
- let name = decodeURIComponent(url.slice(4,iColon));
- let rurl = url.substring(iColon+1);
switch(cmd){
case 48://'0' i:0
switch(subcmd){
case 47://'/' i:0/
if(106===url.charCodeAt(4) && 115===url.charCodeAt(5) && 47===url.charCodeAt(6)){
//i:0/js/xx:[url]
- let fname = name;
+ let iColon = url.indexOf(':',7);
+ let fname = url.slice(4,iColon);
let pname = path.join(__dirname,fname);
if(fs.existsSync(pname)){
(async ()=>{
@@ -548,7 +546,7 @@ You should have received a copy of the GNU General Public License along with thi
let js = await fs.promises.readFile(pname,'utf8');
let t=tabs.children[iTab];
t.dataset.jsonce=js;
- t.src = rurl;
+ t.src = url.substring(iColon+1);
}catch(e){}
})();
}
@@ -556,6 +554,7 @@ You should have received a copy of the GNU General Public License along with thi
return;
case 48: //i:00
{
+ let iColon = url.indexOf(':',5);
let endS;
let is = url.indexOf('%s',iColon+1);
if(is<0)
@@ -563,26 +562,11 @@ You should have received a copy of the GNU General Public License along with thi
else
endS = '"\n';
let pname = path.join(__dirname,"search.json");
- let str = '"'+name+'":"'+rurl+
+ let str = '"'+url.slice(4,iColon)+'":"'+url.substring(iColon+1)+
endS;
jsonAppend(pname,125,str);
}
return;
- case 49: //i:01
- {
- let pname = path.join(__dirname,"menu.json");
- let str = '"'+name+'",":bjs handleQuery(`'+
- rurl+'${tabs.children[iTab].getURL()}`)"\n';
- jsonAppend(pname,93,str);
- }
- return;
- case 50: //i:02
- {
- let pname = path.join(__dirname,"uas.json");
- let str = '"'+name+'":"'+rurl+'"\n';
- jsonAppend(pname,125,str);
- }
- return;
default:
}
}
diff --git a/misc/ebrowser/package.json b/misc/ebrowser/package.json
index 4191281..9556705 100644
--- a/misc/ebrowser/package.json
+++ b/misc/ebrowser/package.json
@@ -1,4 +1,4 @@
-{"version":"1.0.57",
+{"version":"1.0.54",
"name": "ebrowser",
"description": "The keyboard-friendly minimal suckless web browser",
"main": "webview.js",
@@ -8,7 +8,9 @@
"package.json",
"README.md",
"translate.*",
- "js/*.js"
+ "mapkeys.json",
+ "js/*.js",
+ "config"
],
"scripts": {
"release": "electron-builder"
diff --git a/misc/ebrowser/search.json b/misc/ebrowser/search.json
index 5b5dd39..b84e29a 100644
--- a/misc/ebrowser/search.json
+++ b/misc/ebrowser/search.json
@@ -22,6 +22,5 @@
"csdn":"i:0/js/s2ta.js:https://chat.csdn.net?%s",
"bdc":"i:0/js/s2editable.js:https://chat.baidu.com/?%s",
"miku":"i:0/js/s2ta.js:https://www.hellomiku.com?%s",
- "fl":"https://felo.ai/search?q=%s",
"bd":"https://baidu.com/s?wd=%s"
}
diff --git a/misc/ebrowser/webview.js b/misc/ebrowser/webview.js
index a41a8a8..c7ed9ff 100644
--- a/misc/ebrowser/webview.js
+++ b/misc/ebrowser/webview.js
@@ -27,20 +27,19 @@ else {
createWindow();
})
}
-Menu.setApplicationMenu(null);
-const fs = require('fs');
-const path = require('path')
var translateRes;
{
let langs = app.getPreferredSystemLanguages();
- if(langs.length==0 || langs[0].startsWith('en'))
+ if(langs.length==0 || langs[0].startsWith('en') || !initTranslateRes(langs[0]))
topMenu();
else
- initTranslateRes(langs[0]);
+ Menu.setApplicationMenu(null);
}
var repositoryurl = "https://gitlab.com/jamesfengcao/uweb/-/raw/master/misc/ebrowser/";
+const fs = require('fs');
const readline = require('readline');
+const path = require('path')
const process = require('process')
var gredirects = [];
var gredirect;
@@ -402,28 +401,8 @@ function onContextMenu(event, params){
contextMenu.popup();
}
-async function topMenu(){
- const menuTemplate = [];
- try {
- let json = await fs.promises.readFile(path.join(__dirname,'menu.json'), 'utf8');
- let menus = JSON.parse(json);
- if(menus.length>1){
- let submenu = [];
- for(let i=0;i{
- win.webContents.executeJavaScript(js,false);
- }});
- }
- menuTemplate.push({
- label: translate('Tools'),
- submenu: submenu,
- });
- }
- }catch(e){console.log(e)}
- menuTemplate.push(
+function topMenu(){
+ const menuTemplate = [
{
label: translate('Edit'),
submenu: [
@@ -519,7 +498,7 @@ if(e)e.blur();try{tabs.children[iTab].stopFindInPage('clearSelection')}catch(er)
],
},
- );
+ ];
const menu = Menu.buildFromTemplate(menuTemplate);
Menu.setApplicationMenu(menu);
}
@@ -670,16 +649,20 @@ function help(){
win.webContents.executeJavaScript(js,false)
}
-async function initTranslateRes(lang){
+function initTranslateRes(lang){
let basename=path.join(__dirname,"translate.");
let fname = basename+lang;
if(!fs.existsSync(fname))
fname = basename+lang.slice(0,2);
- try {
- let json = await fs.promises.readFile(fname,'utf8');
- translateRes = JSON.parse(json);
- } catch (e){}
- topMenu();
+ if(!fs.existsSync(fname)) return false;
+ (async ()=>{
+ try {
+ let json = await fs.promises.readFile(fname,'utf8');
+ translateRes = JSON.parse(json);
+ } catch (e){}
+ topMenu();
+ })();
+ return true;
}
function translate(str){
diff --git a/sitemap.xml b/sitemap.xml
index 633afd2..30c3ce4 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,14 +4,14 @@
/en/sitemap.xml
- 2024-07-10T11:21:12+08:00
+ 2024-07-02T16:13:43+08:00
/zh/sitemap.xml
- 2024-07-09T11:56:44+08:00
+ 2024-07-03T15:31:26+08:00
diff --git a/zh/index.html b/zh/index.html
index 4e48865..aea9b79 100644
--- a/zh/index.html
+++ b/zh/index.html
@@ -1,7 +1,7 @@
-
+
diff --git a/zh/index.xml b/zh/index.xml
index 6c80c05..e76c0ac 100644
--- a/zh/index.xml
+++ b/zh/index.xml
@@ -6,7 +6,7 @@
Recent content on 超微浏览器: 威、快、高效、极致优化
Hugo
zh
- Tue, 09 Jul 2024 11:56:44 +0800
+ Wed, 03 Jul 2024 15:31:26 +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=
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=
萌搜:https://mengso.com/search?q=
-
html5应用
diff --git a/zh/search/index.html b/zh/search/index.html
index 3d15ab0..58eef5c 100644
--- a/zh/search/index.html
+++ b/zh/search/index.html
@@ -52,7 +52,6 @@
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=
@@ -326,7 +325,7 @@
-Last Modified: 9 July 2024
+
Last Modified: 3 July 2024
update AI engines
24.02.26 添加网盘搜索引擎
diff --git a/zh/sitemap.xml b/zh/sitemap.xml
index 4f56c9b..b590b5b 100644
--- a/zh/sitemap.xml
+++ b/zh/sitemap.xml
@@ -81,7 +81,7 @@
/>
/zh/
- 2024-07-09T11:56:44+08:00
+ 2024-07-03T15:31:26+08:00
/zh/topposts/
- 2024-07-09T11:56:44+08:00
+ 2024-07-03T15:31:26+08:00
/zh/search/
- 2024-07-09T11:56:44+08:00
+ 2024-07-03T15:31:26+08:00
/zh/useragents/
2024-06-05T11:11:01+08:00
-
-
/zh/logcat/
2024-04-02T11:46:25+08:00
diff --git a/zh/tags/index.xml b/zh/tags/index.xml
index 748765c..f2a3db3 100644
--- a/zh/tags/index.xml
+++ b/zh/tags/index.xml
@@ -11,105 +11,105 @@
-
Ssh
/zh/tags/ssh/
- Thu, 23 May 2024 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/ssh/
-
Termux
/zh/tags/termux/
- Thu, 23 May 2024 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/termux/
-
Windows
/zh/tags/windows/
- Thu, 23 May 2024 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/windows/
-
剪贴板
/zh/tags/%E5%89%AA%E8%B4%B4%E6%9D%BF/
- Thu, 23 May 2024 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/%E5%89%AA%E8%B4%B4%E6%9D%BF/
-
电视
/zh/tags/%E7%94%B5%E8%A7%86/
- Wed, 06 Dec 2023 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/%E7%94%B5%E8%A7%86/
-
Css
/zh/tags/css/
- Sat, 28 Jan 2023 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/css/
-
Javascript
/zh/tags/javascript/
- Sat, 28 Jan 2023 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/javascript/
-
不良信息屏蔽
/zh/tags/%E4%B8%8D%E8%89%AF%E4%BF%A1%E6%81%AF%E5%B1%8F%E8%94%BD/
- Wed, 18 May 2022 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/%E4%B8%8D%E8%89%AF%E4%BF%A1%E6%81%AF%E5%B1%8F%E8%94%BD/
-
离线
/zh/tags/%E7%A6%BB%E7%BA%BF/
- Tue, 15 Dec 2020 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/%E7%A6%BB%E7%BA%BF/
-
网盘
/zh/tags/%E7%BD%91%E7%9B%98/
- Tue, 15 Dec 2020 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/%E7%BD%91%E7%9B%98/
-
资源
/zh/tags/%E8%B5%84%E6%BA%90/
- Tue, 15 Dec 2020 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/%E8%B5%84%E6%BA%90/
-
搜索
/zh/tags/%E6%90%9C%E7%B4%A2/
- Tue, 22 Sep 2020 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/%E6%90%9C%E7%B4%A2/
-
Tdict
/zh/tags/tdict/
- Sun, 06 Sep 2020 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/tdict/
-
Tools
/zh/tags/tools/
- Sun, 06 Sep 2020 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/tools/
-
Curl
/zh/tags/curl/
- Mon, 24 Aug 2020 00:00:00 +0000
+ Mon, 01 Jan 0001 00:00:00 +0000
/zh/tags/curl/
diff --git a/zh/topposts/index.xml b/zh/topposts/index.xml
index d0e20e9..bb04246 100644
--- a/zh/topposts/index.xml
+++ b/zh/topposts/index.xml
@@ -6,14 +6,14 @@
Recent content in Topposts on 超微浏览器: 威、快、高效、极致优化
Hugo
zh
- Tue, 09 Jul 2024 11:56:44 +0800
+ Wed, 03 Jul 2024 15:31:26 +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=
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=
萌搜:https://mengso.com/search?q=
-
配置总览
diff --git a/zh/useragents/index.html b/zh/useragents/index.html
index 21a8b33..7fb2339 100644
--- a/zh/useragents/index.html
+++ b/zh/useragents/index.html
@@ -30,10 +30,6 @@