From 3fd90ec47e441371d461971bcdb0e3e8afd7c9a9 Mon Sep 17 00:00:00 2001
From: James Feng Cao Clicking the following links to install search engines with uweb browser. ebrowser users can change the engine name to be shorter (ex. 2 alphabets) as shortcut (click the link below and choose 'Cancel' to have a chance to modify the engine name in address bar). AI:
-andi:https://andisearch.com/?q=
nuu:https://so.nuu.su/search?q=
+isou:https://isou.chat/search?q=
+bagoodex:https://bagoodex.io/search?id=
+andi:https://andisearch.com/?q=
thinkany:https://thinkany.so/search?q=
phind:https://phind-ai.com/search?q=
@@ -64,6 +68,9 @@consensus:https://consensus.app/results/?synthesize=on&q=
yoursearch:https://app.yoursearch.ai/?q=
awesomerepo:https://www.awesome-repositories.com/s/results-with-ai/
+xanswer:i:0/js/s2ta.js:https://www.xanswer.com?%s
+morphic:i:0/js/s2ta.js:https://www.morphic.sh?%s
+lambda:i:0/js/s2ta.js:https://lambda.chat/chatui/?%s
chatGPT:i:0/js/s2ta.js:https://chat.openai.com/?%s
lepton:i:0/js/s2input.js:https://search.lepton.run/?%s
Recommended engines (click or append any of the following to the file "home5.search"):
@@ -241,7 +248,6 @@
git:https://github.com/search?type=Repositories&q=
code:http://searchcode.com/?q=
-grep:https://grep.app/search?q=
symbolhound:http://symbolhound.com/?q=
vector:https://vector.me/search/
jsdelivr:http://www.jsdelivr.com/?query=
@@ -261,7 +267,7 @@ alternativeto -Last Modified: 2 July 2024
+
Last Modified: 16 August 2024
update AI engines
Add AI enginesdiff --git a/en/sitemap.xml b/en/sitemap.xml index c30d8eff..b0f5faa0 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -9,7 +9,7 @@
超微浏览器下载及使用技巧
-(镜像: atomgit gitlab repo codeberg 4everland cyclic github render surge netlify deno kinsta fleek pages bitbucket torapp torappv glitch zeabur vercel 专用镜像...)
Last Modified: 29 June 2024
+
Last Modified: 17 August 2024
README update
Last Modified: 12 August 2024
-add search engines for cloud storages
+update AI engines
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 1f6ab744..f62fbfd2 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -81,7 +81,7 @@ />
Last Modified: 17 August 2024
-README update
+update AI engines
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
+AI引擎 (ebrowser only):
+yw:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://yuewen.cn/chats/new
km:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://kimi.ai
yb:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://yuanbao.tencent.com/chat
tc:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://taichu-web.ia.ac.cn/#/chat
zd:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://zhida.zhihu.com
if:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://iflow.cn
s1:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://www.sou100.com
ds:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://chat.deepseek.com/coder
镜像:
google:i:0mhttps://loud-moth-21.deno.dev/:https://google.com/search?q=%s
推荐引擎(将下面文本添加到home5.search中):
@@ -336,7 +345,7 @@
-
Last Modified: 12 August 2024
+
Last Modified: 18 August 2024
update AI engines
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index f62fbfd2..bfaf8322 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -81,7 +81,7 @@ />
Scholar:
+note.ms
rentry
Wait for url from other devices
@@ -86,17 +89,10 @@
Click following links to install bookmark templates, bookmarks saved to the template have corresponding features enabled.
"novel.html": auto reader's mode
chemspider
-molecule SMILES
-SMILES2structure
Last Modified: 19 July 2024
-add search engines for cloud storages
+
Last Modified: 19 August 2024
+update search engines
Last Modified: 2 April 2024
-add ending # to /index.html
+
Last Modified: 18 August 2024
+uweb: user commands to use mimetype 'q' to quit app
%s
", + "dai":"i:0/js/uweb2ta.js:https://duckduckgo.com?ia=chat&q=h&uweb=%s", + "dk":"i:0/js/uweb2ta.js:https://y.demo.wvusd.homes/https://duckduckgo.com?ia=chat&q=h&uweb=%s", "wa":"https://www.wolframalpha.com/input?i=%s", "yw":"i:q:bjs navigator.clipboard.writeText(`%s`)\nhttps://yuewen.cn/chats/new", "zdm":"http://search.smzdm.com/?c=youhui&s=%s", diff --git a/misc/ebrowser/webview.js b/misc/ebrowser/webview.js index 6d557d5a..cc036cb8 100644 --- a/misc/ebrowser/webview.js +++ b/misc/ebrowser/webview.js @@ -210,6 +210,19 @@ function addrCommand(cmd){ case "cache": session.defaultSession.clearCache(); return; + case "cookie": + if(args.length==2){ + session.defaultSession.clearStorageData({ storages: ['cookies'] }); + return; + } + { + let url = args[2]; + if(url.charCodeAt(0)!==104) url = "https://"+url; + session.defaultSession.cookies.get({ url: url }).then((cookies) => { + cookies.forEach((cookie) => { + session.defaultSession.cookies.remove(targetUrl, cookie.name)})}); + } + return; case "dns": session.defaultSession.clearHostResolverCache(); return; diff --git a/sitemap.xml b/sitemap.xml index aae5b9ed..14993d46 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -4,14 +4,14 @@Clicking the following search engine configuration links (or append the link text to the file "home5.search") installs search engines with uweb browser. ebrowser users can change the engine name to be shorter (ex. 2 alphabets) as shortcut (click the link below and choose 'Cancel' to have a chance to modify the engine name in address bar).
AI Recommended Common language Science More medical scholar dev local
AI:
-felo:https://felo.ai/search?q=
felo:https://felo.ai/search?q=
monica:https://monica.so/answers?q=
nuu:https://so.nuu.su/search?q=
isou:https://isou.chat/search?q=
@@ -79,6 +80,9 @@searchGPT:https://chatgpt.com?hints=search&q=
chatGPT:i:0/js/s2ta.js:https://chat.openai.com/?%s
lepton:i:0/js/s2input.js:https://search.lepton.run/?%s
+AI (uweb browser only and the search tab must be not in background. Appending "%250D" as ENTER key if needed.)
+solab:i:0/js/uweb2ta2.js:https://www.solab.ai?uweb=%s
komo:i:0/js/uweb2ta2.js:https://komo.ai?uweb=%s
Recommended engines:
Engines:i:40%s_00
bing image:http://bing.com/images/search?q=
@@ -267,7 +271,7 @@ alternativeto -Last Modified: 3 December 2024
+
Last Modified: 5 December 2024
add notes for '%250D'
Add AI enginesdiff --git a/en/searchurl/cloudflare/redirect2.js b/en/searchurl/cloudflare/redirect2.js index f0a4f806..b25ee327 100644 --- a/en/searchurl/cloudflare/redirect2.js +++ b/en/searchurl/cloudflare/redirect2.js @@ -10,18 +10,12 @@ export default { async function goUrl(request, url) { const Url = new URL(url); - let headers = new Headers(); - for (var pair of request.headers.entries()){ - let key = pair[0].toLowerCase(); - if(key.startsWith("cf-")) continue; - if("host"===key) continue; - headers.set(pair[0], pair[1]); - } + let headers = new Headers(request.headers); + headers.set("X-forwarded-for","104.28.5.161"); const newReq = new Request(Url, { method: request.method, headers: headers, - body: request.body, - redirect: 'follow' + body: request.body }) return await fetch(newReq); } diff --git a/en/sitemap.xml b/en/sitemap.xml index a66a662d..e39dba23 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -3,7 +3,7 @@ xmlns:xhtml="http://www.w3.org/1999/xhtml">
felo:https://felo.ai/search?q=
百度AI:https://think.baidu.com/aisearch?word=
+直答:https://zhida.zhihu.com/?q=
bagoodex:https://bagoodex.io/search?q=
@@ -80,6 +81,7 @@讯飞:i:0/js/uweb2ta2.js:https://xinghuo.xfyun.cn/desk?uweb=%s
360bot:i:0/js/uweb2ta2.js:https://bot.360.com?uweb=%s
豆包:i:0/js/uweb2ta2.js:https://www.doubao.com/chat/?10uweb=%s
+海螺:i:0/js/uweb2ta2.js:https://hailuoai.com?uweb=%s
AI引擎 (ebrowser):
yw:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://yuewen.cn/chats/new
tc:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://taichu-web.ia.ac.cn/#/chat
powerthesaurus:https://www.powerthesaurus.org/%s/synonyms
macmillanthesaurus:https://www.macmillanthesaurus.com/search/?auto=complete&q=
etymology:https://www.etymonline.com/search?q=
-glosbe:https://glosbe.com/en/zh/dict.naver:https://dict.naver.com/enendict/english/#/search?query=
+glosbe:https://glosbe.com/en/zh/
+dict.naver:https://dict.naver.com/enendict/english/#/search?query=
柯林斯汉英大词典:https://www.hjdict.com/w/
剑桥双解:https://dictionary.cambridge.org/dictionary/english-chinese-simplified/
diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 3934fb33..76216d16 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -3,7 +3,7 @@ xmlns:xhtml="http://www.w3.org/1999/xhtml">1075: global redirection works for login and AI sites like devv.ai and duck.ai.
1073: support http/https/socks proxies with username and password
1036: TV mode: reuse "engine.search" as live TV channel urls.
@@ -80,8 +84,8 @@
940: Any urls as website with local html processing ("i:0m/..../xxx.html:url")
-Last Modified: 25 November 2024
-update AI engines
+
Last Modified: 9 December 2024
+update download links
You can copy or modify the code/program under the terms of the GPL3.0 or later versions.
-Last Modified: 29 September 2024
-update ebrowser README
+
Last Modified: 8 December 2024
+update AI engines
Click the following links to install menus popped by long pressing the bookmark button (with star as icon):
-Capture long screenshot (need long screenshot mode)
Capture long screenshot (need long screenshot mode)
Select All:CTRL-A/undo:CTRL-Z/Redo:CTRL-Y
Extend site cookies to 10 years
Clear site cookies
Last Modified: 11 November 2024
-support proxies with username and password
+
Last Modified: 10 December 2024
+:cinput to choose text file as keyboard input
i:56 urls support CTRL_A to CTRL-Zdiff --git a/en/sitemap.xml b/en/sitemap.xml index e39dba23..7936bc12 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -16,7 +16,7 @@ />
Amazon appstore
+Galaxy.Store
+Downloads
Uweb browser: downloads, plugins and tips
+(Mirrors: gitlab frama codeberg repo fleek netlify surge kinsta zeabur deno bitbucket pages vercel render glitch More...)
Custom paper size PDF export and long vector screenshot, TTS, text reflow, resource sniffer, translation, reader's mode, user-defined url redirection, webdav/http backup & restore, auto next page, sending/receiving msg/file(s), site config (UA, no JS, no image, no 3rd party script/resource,active script, global scripts), http(s)/socks proxy, enabling html5 apps for local files (pdf/djvu/epub viewer, mdict dictionary lookup etc.).
+
+
+
+
+
+
Ebrowser is a simple version of uweb browser on the desktop.
+We encourage everyone to help with localization. The following is how to do.
+Last Modified: 11 December 2024
+add cf worker code link for redirection
+
Global javascript files locates in subfolder "js". Long press button [☰] to configure. Click the following links to install:
-Save password
-Instant page
large size javascript code can be installed to the folder "bookmarklet" (long pressing button "js" to popup menu):
-Eruda
-Performance
-
Remote javascript is defined in default.rjs. Click the following link to install. (Force exit and re-launch the app, then long press the button with icon "search" to popup the menu.):
-
-Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);
-Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);
-Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);
-mathjax:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']
-mdme:['https://fastly.jsdelivr.net/npm/mdme']
-md+tex:['https://fastly.jsdelivr.net/npm/texme']
-New tab to open links:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)
-Site search:;open('i:15site:' + location.hostname)
-Spell check:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v
-
Remote script configuration file "default.rjs" whose lines have the following format: -[script name]:[javascript code to return url arrays]
- - - diff --git a/index.html b/index.html index ce911c95..46c82ab3 100644 --- a/index.html +++ b/index.html @@ -1,10 +1,13 @@ - - - -Amazon appstore
+Galaxy.Store
+下载
超微浏览器下载及使用技巧
+(镜像: atomgit gitlab frama repo codeberg github render surge netlify deno kinsta fleek pages bitbucket torapp torappv glitch zeabur vercel 专用镜像...)

+
+
+
+
+
输出自定义页面大小PDF、矢量图长截屏、朗读、文本重排、嗅探、比价、翻译、视频解析、离线保存、阅读模式(推荐与脚本激活模式配合)、网址重定向至国内、多帐号切换、网盘离线下载、文件管理、webdav/http空间备份/恢复任何指定文件集、智能翻页、目录文件传送、网站独立设置(ua,禁用脚本,无图,激活脚本)、行编辑器、代码编辑器(支持120多种语言,语法高亮、错误提示、自动提示、直接运行测试、其它网页上直接测试)。通过安装html5应用可预览/阅读本地或在线任意格式文件(pdf,djvu,epub,mdx/mdd,docx等)。
+修仙小说里面有一种异能,叫做“成功可以复制”,只要成功一次,就能无限复制。超微浏览器中这种异能叫"超级书签"。成功使用时保存,需要时就可以无限恢复。
+小书签(bookmarklet)再也不用手工输入,直接将小书签网站加入书签即可。运行时长按出菜单后选择“在新窗口中打开”,小书签将作用于最后一个窗口。
+独创不良信息绝杀:阻止指定根域名的一切子域名、孙域名...,不良信息一网打尽。 支持根域名前缀、网址路径正则表达式。
+独创脚本激活模式,脚本执行后被激活,此后自动作用于同类网址。
+支持全局用户脚本/样式,可任意叠加,轻松切换。
+支持网址特定脚本/样式,可轻松支持百万以上不同脚本。
+支持自定义任意多个搜索引擎; 支持执行用户提供任何js文件; 支持用户定义任意多个useragent; 长按链接支持运行第三方程序; 长按链接支持运行用户js文件。
+配套安装uWeb定制Termux应用,可用地址栏作图(类似matlab功能)、超级计算器(无限精度/π的前万位或更多、无限函数、无限常量)、符号演算(解方程、分解因式、求积分导数)、离线字典查找等。譬如地址栏输入sin(x)**5就直接得到函数图形。利用好第三方代码,才能真正发挥出uWeb的潜能。
+可看作超微浏览器台式机简易版,用于弥补普通浏览器访问痛点。
+Last Modified: 10 December 2024
+update README
+
801+版本远程脚本格式由返回字符串改为返回url数组。
- - -全局脚本位于js子目录, 长按[☰]按钮配置。点击以下链
-接安装:
-记住密码
-极速网页
大型脚本可安装到"bookmarklet"目录下(长按js按钮):
-google翻译
-Eruda
-彩云小译
-Performance
-移除覆盖物
-
远程脚本配置文件default.rjs样列如下,点击以下链接自动安装 (清空后台重启浏览器,长按搜索按钮,则弹出远程脚本菜单):
-
-彩云小译:['https://caiyunapp.com/dest/trs.js']
-Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);
-Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);
-Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);
-显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']
-md内容的html文件显示:['https://fastly.jsdelivr.net/npm/mdme']
-md+tex内容的html文件:['https://fastly.jsdelivr.net/npm/texme']
-新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)
-站内搜索:;open('i:15site:' + location.hostname)
-编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v
-
远程及小型脚本可安装到default.rjs文件中。远程脚本对CSP网站仍然有效。:
点击安装google翻译、背景图等
远程脚本配置文件default.rjs每行格式如下 (url部分支持js代码运算):
[远程脚本名]:[返回url数组的javascript代码]
其中url可以为本地html5应用脚本地址。譬如'https://localapp[XXX]/....../[XXX].js'。此时,js脚本也可使用.link文件方式调用。
- - - diff --git a/zh/tags/PC/index.html b/zh/tags/PC/index.html new file mode 100644 index 00000000..a5282172 --- /dev/null +++ b/zh/tags/PC/index.html @@ -0,0 +1,63 @@ + + + + + + + + + +Amazon appstore
-Galaxy.Store
-Downloads
Uweb browser: downloads, plugins and tips
-(Mirrors: gitlab frama codeberg repo fleek netlify surge kinsta zeabur deno bitbucket pages vercel render glitch More...)
Custom paper size PDF export and long vector screenshot, TTS, text reflow, resource sniffer, translation, reader's mode, user-defined url redirection, webdav/http backup & restore, auto next page, sending/receiving msg/file(s), site config (UA, no JS, no image, no 3rd party script/resource,active script, global scripts), http(s)/socks proxy, enabling html5 apps for local files (pdf/djvu/epub viewer, mdict dictionary lookup etc.).
-
-
-
-
-
-
Ebrowser is a simple version of uweb browser on the desktop.
-We encourage everyone to help with localization. The following is how to do.
-Last Modified: 11 December 2024
-add cf worker code link for redirection
-
Amazon appstore
-Galaxy.Store
-下载
超微浏览器下载及使用技巧
-(镜像: atomgit gitlab frama repo codeberg github render surge netlify deno kinsta fleek pages bitbucket torapp torappv glitch zeabur vercel 专用镜像...)

-
-
-
-
-
输出自定义页面大小PDF、矢量图长截屏、朗读、文本重排、嗅探、比价、翻译、视频解析、离线保存、阅读模式(推荐与脚本激活模式配合)、网址重定向至国内、多帐号切换、网盘离线下载、文件管理、webdav/http空间备份/恢复任何指定文件集、智能翻页、目录文件传送、网站独立设置(ua,禁用脚本,无图,激活脚本)、行编辑器、代码编辑器(支持120多种语言,语法高亮、错误提示、自动提示、直接运行测试、其它网页上直接测试)。通过安装html5应用可预览/阅读本地或在线任意格式文件(pdf,djvu,epub,mdx/mdd,docx等)。
-修仙小说里面有一种异能,叫做“成功可以复制”,只要成功一次,就能无限复制。超微浏览器中这种异能叫"超级书签"。成功使用时保存,需要时就可以无限恢复。
-小书签(bookmarklet)再也不用手工输入,直接将小书签网站加入书签即可。运行时长按出菜单后选择“在新窗口中打开”,小书签将作用于最后一个窗口。
-独创不良信息绝杀:阻止指定根域名的一切子域名、孙域名...,不良信息一网打尽。 支持根域名前缀、网址路径正则表达式。
-独创脚本激活模式,脚本执行后被激活,此后自动作用于同类网址。
-支持全局用户脚本/样式,可任意叠加,轻松切换。
-支持网址特定脚本/样式,可轻松支持百万以上不同脚本。
-支持自定义任意多个搜索引擎; 支持执行用户提供任何js文件; 支持用户定义任意多个useragent; 长按链接支持运行第三方程序; 长按链接支持运行用户js文件。
-配套安装uWeb定制Termux应用,可用地址栏作图(类似matlab功能)、超级计算器(无限精度/π的前万位或更多、无限函数、无限常量)、符号演算(解方程、分解因式、求积分导数)、离线字典查找等。譬如地址栏输入sin(x)**5就直接得到函数图形。利用好第三方代码,才能真正发挥出uWeb的潜能。
-可看作超微浏览器台式机简易版,用于弥补普通浏览器访问痛点。
-Last Modified: 10 December 2024
-update README
-
点击以下链接可安装长按“链接”按钮菜单:
-网络剪贴板:更
-改ric为其它未使用标识
-note.ms:更
-改ric为其它未使用标识
-bing翻译
+网络剪贴板:更改ric为其它未使用标识
+note.ms:更改ric为其它未使用标识
iciba
百度翻译
@@ -96,8 +94,8 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
pclip
Last Modified: 11 December 2024
-add cf worker code link for redirection
+
Last Modified: 12 December 2024
+remove typos
-Check for updates
+Check for updates
UI configuration(gitee)
Advanced customization
Example: "https://muweb.pages.dev/redirect?"
-global redirection code for cloudflare workers free deployment: The global redirection url is "https://subdomain.workers.dev/", which is just the worker's domain name.
+global redirection code for cloudflare worker free deployment: The global redirection url is "https://subdomain.workers.dev/", which is just the worker's domain name.
Click the following links to append mirrors to the file "default.redirect":
google recaptcha mirror
Last Modified: 11 December 2024
-add cf worker code link for redirection
+
Last Modified: 12 December 2024
+update AI
consensus:https://consensus.app/results/?synthesize=on&q=
yoursearch:https://app.yoursearch.ai/?q=
awesomerepo:https://www.awesome-repositories.com/s/results-with-ai/
-devv:i:0/js/s2editable.js:https://devv.ai?%3Cp%3E%s%3C/p%3E
floatsearch:i:0/js/s2ta.js:https://floatsearch.ai?%s
morphic:i:0/js/s2ta.js:https://www.morphic.sh?%s
lambda:i:0/js/s2ta.js:https://lambda.chat/chatui/?%s
+blackbox:i:0/js/uweb2ta.js:https://www.blackbox.ai?10uweb=%s
+devv:i:0/js/s2editable.js:https://devv.ai?%3Cp%3E%s%3C/p%3E
duck.ai:i:0/js/uweb2ta.js:https://duckduckgo.com?ia=chat&q=h&uweb=%s
searchGPT:https://chatgpt.com?hints=search&q=
chatGPT:i:0/js/s2ta.js:https://chat.openai.com/?%s
@@ -272,7 +273,7 @@ alternativeto -Last Modified: 10 December 2024
+
Last Modified: 12 December 2024
add notes for '%250D'
Add AI enginesdiff --git a/en/sitemap.xml b/en/sitemap.xml index 3929e9f5..d152c3ab 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -3,7 +3,7 @@ xmlns:xhtml="http://www.w3.org/1999/xhtml">
文件"engine.search"为自动顺序搜索引擎列表文件,其格式与主屏搜索引擎文件"home5.search"类似。如果将其中的搜索引擎url以视频url代替。此时浏览器会将“engine.search”作为视频直播频道列表文件,浏览器进入电视模式,启动就会全屏播放。
-Last Modified: 2 April 2024
-add js function in README
+
Last Modified: 12 December 2024
+update gen.sh
-Clicking the following links to install search engines to uweb's home screen.
- -Recommended engines (append any of following to file "home5.search"):bing image:http://bing.com/images/search?q=
-wolfram:https://www.wolframalpha.com/input/?i=
-wiki:https://en.wikipedia.org/wiki/Special:Search?search=
-Youtube:https://www.youtube.com/results?search_query=
-Facebook:https://www.facebook.com/search/str/%s/keywords_search
-Instagram:https://www.instagram.com/explore/tags/%s/
-boardreader:https://boardreader.com/s/%s.html
- - -Note: "Engines" needs file "engine.search",whose format is same as "home.search" except that the keyword part of url must be denoted with "%s". Pressing the right arrow button on the search result page will automatically query with next engine in the file.
- -Common engines:
-
google:https://google.com/search?q=
-bing:http://www.bing.com/search?q=
-neeva:https://neeva.com/search?q=
- -seekr:https://www.seekr.com/search?query=
-xda:https://www.xda-developers.com/search/
-Feeling lucky:https://google.com/search?btnl=1&q=
-pix:https://www.google.com/search?tbm=isch&q=
-youtube:https://youtube.com/results?search_query=
-news:https://news.search.yahoo.com/search/news?p=
-stock:https://finance.yahoo.com/quote/
-amazon:https://www.amazon.com/s/?field-keywords=
-weather:https://www.wunderground.com/cgi-bin/findweather/getForecast?query=
-IMDB:https://www.imdb.com/find?q=
-film review:https://www.rottentomatoes.com/search/?search=
-goodreads:https://www.goodreads.com/search?query=
-audible:http://www.audible.com/search?sort=review-rank&advsearchKeywords=
-audiobay:http://audiobookbay.nl/?s=
-
-language:
-
webster1913:https://www.websters1913.com/words/
-merriam-webster:https://www.merriam-webster.com/dictionary/
-dictionary:https://www.dictionary.com/browse/
-freedictionary:https://www.thefreedictionary.com/
-wordreference:https://www.wordreference.com/definition/
-vocabulary:https://www.vocabulary.com/dictionary/
-etymology:https://www.etymonline.com/search?q=
-powerthesaurus:https://www.powerthesaurus.org/%s/synonyms
-macmillanthesaurus:https://www.macmillanthesaurus.com/search/?auto=complete&q=
-lword:https://lword.top/word.html#
- -webster:https://www.merriam-webster.com/dictionary/
-googledict:http://googledictionary.freecollocation.com/meaning?word=
- - -
-Science:
-
britannica:https://www.britannica.com/search?query=
-mathRef:https://reference.wolfram.com/search/?q=
-mathSE:https://math.stackexchange.com/search?q=
-phySE:https://physics.stackexchange.com/search?q=
-physicsForum:https://www.physicsforums.com/search/2195918/?q=
-chemSE:https://chemistry.stackexchange.com/search?q=
-chem:https://www.ncbi.nlm.nih.gov/pccompound?term=
-proofwiki:https://proofwiki.org/w/index.php?search=
-physics:http://www.physics.org/explore-results-all.asp?q=
-biology:https://www.biologyonline.com/dictionary/
-nist chem:https://webbook.nist.gov/cgi/cbook.cgi?Formula=
-chemiday:https://chemiday.com/search/?lang=en&q=
-chem.libretexts:https://chem.libretexts.org/Special:Search?q=
-bio.libretexts:https://bio.libretexts.org/Special:Search?q=
-phys.libretexts:https://phys.libretexts.org/Special:Search?q=
-med.libretexts:https://med.libretexts.org/Special:Search?q=
-math.libretexts:https://math.libretexts.org/Special:Search?q=
-stats.libretexts:https://stats.libretexts.org/Special:Search?q=
-geo.libretexts:https://geo.libretexts.org/Special:Search?q=
-eng.libretexts:https://eng.libretexts.org/Special:Search?q=
-biz.libretexts:https://biz.libretexts.org/Special:Search?q=
-human.libretexts:https://human.libretexts.org/Special:Search?q=
-socialsci.libretexts:https://socialsci.libretexts.org/Special:Search?q=
-workforce.libretexts:https://workforce.libretexts.org/Special:Search?q=
-
-Engines that can use as documentation:
-
oscobo:https://www.oscobo.com/search.php?q=
-teoma:https://www.teoma.com/web?q=
-lycos:https://search.lycos.com/web/?q=
-technorati:http://technorati.com/search/index.php?q=
-qwant:https://lite.qwant.com/?q=
-swisscows:https://swisscows.com/web?query=
-duck:https://duckduckgo.com/?q=
-mojeek:https://www.mojeek.com/search?q=
-gigablast:https://www.gigablast.com/search?c=main&qlangcountry=en-us&q=
-yandex:https://yandex.com/search/?text=
-searx:https://searchx.mobi/?q=
-
-Medical:
-
merckmanuals:https://www.merckmanuals.com/professional/SearchResults?query=
-openmd:https://openmd.com/search?q=
-medical-dict:https://medical-dictionary.com/results.php?term=
-ncbiBooks:https://www.ncbi.nlm.nih.gov/books/?term=
-healio:https://journals.healio.com/action/doSearch?AllField=
-pubmed:https://pubmed.ncbi.nlm.nih.gov/?term=
-pmc:https://www.ncbi.nlm.nih.gov/pmc/?term=
-Tabers:https://www.tabers.com/tabersonline/search?st=OSS&q=
-
-Cloud storage:
-
-Scholar:
-
sweetsearch:https://sweetsearch.com/search?q=
-refseek:https://www.refseek.com/search?q=
-google scholar:https://scholar.google.com/scholar?q=
-semanticscholar:https://www.semanticscholar.org/search?sort=relevance&q=
-
-Developer:
-
git:https://github.com/search?type=Repositories&q=
- -code:http://searchcode.com/?q=
-symbolhound:http://symbolhound.com/?q=
-vector:https://vector.me/search/
-jsdelivr:http://www.jsdelivr.com/?query=
-greasyfork:https://greasyfork.org/en/scripts?sort=updated&q=
-
-app:
-
-local engines(May need termux customized edition and tools like bc,gnuplot etc.):
-
bc:d:text/html:echo \'%s\'|bc -l -q:
-2D plot:d:image/svg+xml:gnuplot -e \'set term svg;set output; plot %s\':
-3D plot:d:image/svg+xml:gnuplot -e \'set term svg;set output; splot %s\':
- - - - diff --git a/sitemap.xml b/sitemap.xml index 895c47bf..290f7468 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -11,7 +11,7 @@Last Modified: 6 December 2024
-update AI engines
+
Last Modified: 12 December 2024
+cleanup
点击本链接自动安装分类多引擎文件至"bookmark"目录下。
-超微浏览器中通过“设置”->“总目录”->“↑”->“Download”,点击后缀为.search的下载文件,超微浏览器将自动显示分类多引擎搜索。此时可按菜单键(或长按底部工具条后退按钮)选择“添加到桌面”方便以后访问。
+超微浏览器中通过“设置”->“总目录”->“↑”->“Download”,点击后缀为.search的下载文件,超微浏览器将自动显示分类多引擎搜索。此时可按菜单键(或长按底部工具条后退按钮)选择“添加到桌面”方便以后访问。
.search文件每行格式为如下几种:
[搜索引擎名]:[不含%s的url]
[搜索引擎名]:[含%s的url]
@@ -59,7 +58,7 @@
[Engine name]:[Extra request headers]:[post params with '%s' as keyword]:[url]
.search文件首行必须为第一种类型的搜索引擎。由于其它类型的引擎数量稀少,为性能考虑,超微限制了首个引擎的种类。
用"i:"等超微内部scheme作开头的搜索引擎,关键词部分仅支持使用"%s",这纯粹是为了降低代码复杂性。
笔者用来查询各式词典,发现效果非常好。百兆以内的文本文件压缩以后可以直接快速检索,定位至特定位置以后可上下滚动阅读全部文本。
-Last Modified: 2 April 2024
-add js function in README
+
Last Modified: 12 December 2024
+cleanup
-超微浏览器下点击搜索引擎配置链接可自动添加到主屏。
- -推荐引擎(将下面文本添加到home5.search中):google镜像:https://go-xyz.xyz/search?q=
-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=
-维基:POST:kw=%s:https://www.wanweibaike.com/search
-wiki:POST:kw=%s:https://en.wanweibaike.com/search
-volupedia:https://en.volupedia.org/wiki/Special:Search?search=
-wiki:https://en.wikipedia.org/wiki/Special:Search?search=
-答案答案:https://daandaan.com/search?q=
- -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://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=
-必应:http://cn.bing.com/search?q=
-必应4:http://www4.bing.com/search?q=
- -Fsou:https://fsoufsou.com/search?q=
-paulgo:https://paulgo.io/search?q=
- -neeva:https://neeva.com/search?q=
-seekr:https://www.seekr.com/search?query=
- - -无追:https://www.wuzhuiso.com/s?q=
- -搜狗:https://m.sogou.com/web?query=
-ecosia:https://www.ecosia.org/search?q=
-萌搜:https://mengso.com/search?q=
-头条:https://m.toutiao.com/search/?keyword=
-magi:https://magi.com/search?q=
-Lookao:https://lookao.com/search?q=
-answers:https://www.answers.com/search?q=
-影视:https://cupfox.app/search?key=
-努努影院:https://www.nunuyy.top/so/%s---.html
-4444影视:http://k.4444.li/search.php?searchword=
-nfmovies:https://www.nfmovies.com/search.php?searchword=
-电影狗:https://www.dianyinggou.com/so/
-pianku:https://www.pianku.la/search/%s-------------.html
-novip:https://www.novipnoad.com/s=
-555dianying:https://555dianying.cc/vodsearch/-------------.html?wd=
-zhenbuka:https://www.zhenbuka.net/search/-------------.html?wd=
-7080:https://7080.wang/so.html?wd=
-1090:https://1090hd.com/vod/search.html?wd=
- -疯狂音乐:http://music.myepoch.cn/?type=netease&name=
-墨灵音乐:https://music.mli.im/music.web?auto-action=true&action=search&wd=
-apkdl:https://apkdl.net/search?q=
-apkpure:https://apkpure.com/search?t=app&q=
-豌豆荚:http://m.wandoujia.com/search?key=
-360手机助手:http://m.app.so.com/search/index?q=
-应用宝:http://app.qq.com/#id=search&key=
-xda:https://www.xda-developers.com/search/
-boardreader:https://boardreader.com/s/%s.html
-Feeling lucky:https://google.com/search?btnl=1&q=
-pix:https://www.google.com/search?tbm=isch&q=
-youtube:https://youtube.com/results?search_query=
-news:https://news.search.yahoo.com/search/news?p=
-stock:https://finance.yahoo.com/quote/
-amazon:https://www.amazon.com/s/?field-keywords=
-weather:https://www.wunderground.com/cgi-bin/findweather/getForecast?query=
-IMDB:https://www.imdb.com/find?q=
-film review:https://www.rottentomatoes.com/search/?search=
-goodreads:https://www.goodreads.com/search?query=
-audible:http://www.audible.com/search?sort=review-rank&advsearchKeywords=
-audiobay:http://audiobookbay.nl/?s=
- - - -
-语言学习:
-
merriam-webster:https://www.merriam-webster.com/dictionary/
-dictionary:https://www.dictionary.com/browse/
-britannica:https://www.britannica.com/search?query=
-freedictionary:https://www.thefreedictionary.com/
-wordreference:https://www.wordreference.com/definition/
-vocabulary:https://www.vocabulary.com/dictionary/
- -webster1913:https://www.websters1913.com/words/
-powerthesaurus:https://www.powerthesaurus.org/%s/synonyms
-macmillanthesaurus:https://www.macmillanthesaurus.com/search/?auto=complete&q=
-etymology:https://www.etymonline.com/search?q=
-dict.naver:https://dict.naver.com/enendict/english/#/search?query=
- -柯林斯汉英大词典:https://www.hjdict.com/w/
-剑桥双解:https://dictionary.cambridge.org/dictionary/english-chinese-simplified/
-lword:https://lword.top/word.html#
- -webster:https://www.merriam-webster.com/dictionary/
- -quword etymology:https://www.quword.com/etym/s/
-googledict:http://googledictionary.freecollocation.com/meaning?word=
-牛津搭配:http://www.freecollocation.com/search?word=
-eudic:http://dict.eudic.net/mdicts/en/
- -现代日汉双解:https://dict.hjenglish.com/jp/jc/
-訓詁:POST:word=%s:http://www.kaom.net/book_xungu8.php
-ctext:https://ctext.org/dictionary.pl?char=
-漢後:https://ctext.org/post-han?searchu=
-先秦兩漢:https://ctext.org/pre-qin-and-han?searchu=
-汉字:http://www.guoxuedashi.net/zidian/so.php?kz=1&sokeyzi=
- -说文解字:http://www.shuowen.net/so.php?s=
-登樓古籍:POST:text=%s:https://denglou.pgdict.com
-cnkgraph:https://cnkgraph.com/Book/Search?MetaDataKey=&ContentKey=
-漢語大字典:POST:search_type=term&keyword=%s:https://homeinmists.ilotus.org/hd/hydzd2.php
-漢語大字典页码:https://homeinmists.ilotus.org/hd/hydzd3.php?st=term&kw=
-漢語大词典:POST:search_type=term&keyword=%s:https://homeinmists.ilotus.org/hd/hydcd2.php
-漢語大词典全文:POST:search_type=description&keyword=%s:https://homeinmists.ilotus.org/hd/hydcd2.php
-guoxuemi:http://www.guoxuemi.com/search/?keyword=
-二十四史:http://www.guoxuemi.com/24shi/?keyword=
-四库全书:http://www.guoxuemi.com/search/skqs.php?keyword=
-古今图书集成:http://www.guoxuemi.com/gjtsjc/?keyword=
- - -異體字:http://jf.xmu.edu.cn/variants/cc.html?q=
-诗词:http://www.guoxuedashi.net/shici/so.php?kt=44&sokeysc=
-汉典重光:https://wenyuan.aliyun.com/home/search-word?keyword=
-
-科技教材:
-
化学品:http://www.basechem.org/search?q=
-britannica:https://www.britannica.com/search?query=
-mathRef:https://reference.wolfram.com/search/?q=
-mathSE:https://math.stackexchange.com/search?q=
-phySE:https://physics.stackexchange.com/search?q=
-physicsForum:https://www.physicsforums.com/search/2195918/?q=
-chemSE:https://chemistry.stackexchange.com/search?q=
-chem:https://www.ncbi.nlm.nih.gov/pccompound?term=
-proofwiki:https://proofwiki.org/w/index.php?search=
-physics:http://www.physics.org/explore-results-all.asp?q=
-biology:https://www.biologyonline.com/dictionary/
-nist chem:https://webbook.nist.gov/cgi/cbook.cgi?Formula=
-chemiday:https://chemiday.com/search/?lang=en&q=
-chem.libretexts:https://chem.libretexts.org/Special:Search?q=
-bio.libretexts:https://bio.libretexts.org/Special:Search?q=
-phys.libretexts:https://phys.libretexts.org/Special:Search?q=
-med.libretexts:https://med.libretexts.org/Special:Search?q=
-math.libretexts:https://math.libretexts.org/Special:Search?q=
-stats.libretexts:https://stats.libretexts.org/Special:Search?q=
-geo.libretexts:https://geo.libretexts.org/Special:Search?q=
-eng.libretexts:https://eng.libretexts.org/Special:Search?q=
-biz.libretexts:https://biz.libretexts.org/Special:Search?q=
-human.libretexts:https://human.libretexts.org/Special:Search?q=
-socialsci.libretexts:https://socialsci.libretexts.org/Special:Search?q=
-workforce.libretexts:https://workforce.libretexts.org/Special:Search?q=
-
-直达官方文档的国外引擎:
-
oscobo:https://www.oscobo.com/search.php?q=
-metager:https://metager.org/meta/meta.ger3?eingabe=
-teoma:https://www.teoma.com/web?q=
-lycos:https://search.lycos.com/web/?q=
-technorati:http://technorati.com/search/index.php?q=
-qwant:https://lite.qwant.com/?q=
-swisscows:https://swisscows.com/web?query=
-duck:https://duckduckgo.com/?q=
-mojeek:https://www.mojeek.com/search?q=
-gigablast:https://www.gigablast.com/search?c=main&qlangcountry=en-us&q=
-yandex:https://yandex.com/search/?text=
-yandex image:https://yandex.com/images/search?text=
- -tiekoetter:https://searx.tiekoetter.com/search?q=
-lukol:https://www.lukol.com/s.php?q=
-hotbot:https://www.hotbot.com/web?q=
-
-网盘搜索:
-
哎哟喂:http://www.aiyoweia.com/search/
-飞飞盘:https://www.feifeipan.com/#/main/search?keyword=
-56盘:https://www.56wangpan.com/search/kw
-
-学术搜索:
-
sweetsearch:https://sweetsearch.com/search?q=
-refseek:https://www.refseek.com/search?q=
-google scholar:https://scholar.google.com/scholar?q=
-semanticscholar:https://www.semanticscholar.org/search?sort=relevance&q=
-base:https://www.base-search.net/Search/Results?lookfor=
-
-开发者友好搜索:
-
git:https://github.com/search?type=Repositories&q=
- -code:http://searchcode.com/?q=
-greasyfork:https://greasyfork.org/en/scripts?filter_locale=0&sort=updated&q=
-symbolhound:http://symbolhound.com/?q=
-vector:https://vector.me/search/
-jsdelivr:http://www.jsdelivr.com/?query=
-goobe:https://goobe.io/search.aspx?k=
-
-应用内搜索:
-
淘宝:taobao://s.m.taobao.com/h5?q=
-百度地图:bdapp://map/place/search?query=
- - - - -bilibili:bilibili://search?keyword=
-dianping:dianping://shoplist/search?keyword=
-bmap:bmap://?action=search&keyword=
-meituan:imeituan://www.meituan.com/search?q=
-拼多多:pinduoduo://com.xunmeng.pinduoduo/search_result.html?search_key=
-小红书:xhsdiscover://search/result?keyword=
-抖音:snssdk1128://search/result?keyword=
- -高德地图:androidamap://arroundpoi?sourceApplication=softname&dev=0&keywords=
-
-本地引擎(需安装定制termux及相应工具如bc,gnuplot等):
-
计算器:d:text/html:echo \'%s\'|bc -l -q:
-函数作图:d:image/svg+xml:gnuplot -e \'set term svg;set output; plot %s\':
-3d函数作图:d:image/svg+xml:gnuplot -e \'set term svg;set output; splot %s\':
- - -更多引擎可参看:
Skittle
searchengine
-网盘搜索
BT磁力
词典
有哪些特殊的搜索引擎
google镜像 镜像2
Last Modified: 12 December 2024
-update gen.sh
+cleanup
直播源网址前面加上前缀"i:0/js/2lnk.js:i:5g"就可将任一直播源转换成直播网页。其中前缀 "i:0/js/2lnk.js:" 对网页使用应用assets内置小书签"/js/2lnk.js"转换直播源,"i:0"中的"0"表示此功能更改了网页原来的展示,有潜在的安全威胁,需用户明确同意(比如通过安装为菜单,书签,对话框确认等方式)。前缀"i:5g"强迫网址以文本方式展示,部分直播源以m3u为后缀,不能省略前缀"i:5g"。
-YanG-1989/m3u
CCTV1
CCTV2财经
@@ -65,20 +65,15 @@
CCTV17农村
万州综合频道
万州三峡移民
-龙岩综合频道
-三明综合频道
-三明公共频道
-敦煌综合频道
河源综合频道
河源公共频道
-黔东南综合频道
沧州三套节目
文件"engine.search"为自动顺序搜索引擎列表文件,其格式与主屏搜索引擎文件"home5.search"类似。如果将其中的搜索引擎url以视频url代替。此时浏览器会将“engine.search”作为视频直播频道列表文件,浏览器进入电视模式,启动就会全屏播放。
Last Modified: 12 December 2024
-cleanup
+update tvlive
直播源网址前面加上前缀"i:0/js/2lnk.js:i:5g"就可将任一直播源转换成直播网页。其中前缀 "i:0/js/2lnk.js:" 对网页使用应用assets内置小书签"/js/2lnk.js"转换直播源,"i:0"中的"0"表示此功能更改了网页原来的展示,有潜在的安全威胁,需用户明确同意(比如通过安装为菜单,书签,对话框确认等方式)。前缀"i:5g"强迫网址以文本方式展示,部分直播源以m3u为后缀,不能省略前缀"i:5g"。
-fanmingming/live
CCTV1
CCTV2财经
@@ -73,7 +73,7 @@
Last Modified: 12 December 2024
-update tvlive
+tvlive: src change
直播源网址前面加上前缀"i:0/js/2lnk.js:i:5g"就可将任一直播源转换成直播网页。其中前缀 "i:0/js/2lnk.js:" 对网页使用应用assets内置小书签"/js/2lnk.js"转换直播源,"i:0"中的"0"表示此功能更改了网页原来的展示,有潜在的安全威胁,需用户明确同意(比如通过安装为菜单,书签,对话框确认等方式)。前缀"i:5g"强迫网址以文本方式展示,部分直播源以m3u为后缀,不能省略前缀"i:5g"。
-kimwang1978/collect-tv-txt
CCTV1
CCTV2财经
@@ -73,7 +73,7 @@
Last Modified: 12 December 2024
-tvlive: src change
+tvlive src update
直播源网址前面加上前缀"i:0/js/2lnk.js:i:5g"就可将任一直播源转换成直播网页。其中前缀 "i:0/js/2lnk.js:" 对网页使用应用assets内置小书签"/js/2lnk.js"转换直播源,"i:0"中的"0"表示此功能更改了网页原来的展示,有潜在的安全威胁,需用户明确同意(比如通过安装为菜单,书签,对话框确认等方式)。前缀"i:5g"强迫网址以文本方式展示,部分直播源以m3u为后缀,不能省略前缀"i:5g"。
iptv365
对超大的直播源建议用户按底部工具条下载按钮保存为离线网页,减少下载耗时。
CCTV1
-试验1
+1
2
4
5
diff --git a/en/mirrors/index.html b/en/mirrors/index.html
index b95f8bab..ec43bf08 100644
--- a/en/mirrors/index.html
+++ b/en/mirrors/index.html
@@ -71,7 +71,7 @@
bgithub
-试验1
+1
2
4
5
@@ -125,8 +125,8 @@
antopie Last Modified: 25 August 2024 Last Modified: 13 December 2024
CCTV2财经
From cc6986bb642e40726f11b65c7d2ecd3f5d700f2d Mon Sep 17 00:00:00 2001
From: James Feng Cao Mirrors (for all versions)
-update mirrors
+
+cleanup
Uweb browser: downloads, plugins and tips
(Mirrors: gitlab frama codeberg repo fleek netlify surge kinsta zeabur deno bitbucket pages vercel render glitch More...)
Last Modified: 11 December 2024
-add cf worker code link for redirection
+
Last Modified: 13 December 2024
+cleanup
免魔法国内直接使用系列
-使用重定向访问国外技术网址
-google翻译
目录配置及使用外部文件管理器
超微浏览器可以将配置目录或子目录符号链接至任意外部公共目录。安装有定制termux的用户也可以使用移动设备自带或第三方文件管理器管理超微内部指定目录。具体配置可见Shell command mode。
准确显示PC网页:
@@ -68,8 +67,8 @@ UA为非默认时,点击PC按钮将恢复UA为默认,同时触发不保存UA
配置文件列表中直接点击文件名即可编辑。
Last Modified: 30 April 2024
-urlInc() prefers .search to .html
+
Last Modified: 13 December 2024
+cleanup
Last Modified: 12 December 2024
-tvlive src update
+cleanup
Click the following links to install menus popped by long pressing the share button (with arrow-out-of-square as icon) on the bottom toolbar:
+New line
+CTRL-Z
+CTRL-Y
Long pressing the share button in uweb browser will popup menus defined in file "default.input", each line of which defines common phrase for user inputs. If the phrase begins with "@xxxx@", then "xxxx" part is the alias for the rest part of the string. Alias could be used for non-printable phrases.
+ +Last Modified: 14 December 2024
+Common phrases for input method
+
所有书签都可通过"长按链接->命令->书签"保存链接为书签。书签菜单可至特色服务网页安装。
AI/chatGPT:
文本/文件共享
@@ -76,7 +77,7 @@ AI/chatGPT: 全能计算器bc -Last Modified: 28 November 2024
+
Last Modified: 25 December 2024
update AI engines
940: Any urls as website with local html processing ("i:0m/..../xxx.html:url")
-Last Modified: 15 December 2024
-update home.css
+
Last Modified: 27 December 2024
+remove udrop
Last Modified: 25 December 2024
-update AI engines
+remove udrop
Last Modified: 27 December 2024
-remove udrop
+update AI engines
Example: "https://muweb.pages.dev/redirect?"
-global redirection code for cloudflare worker free deployment: The global redirection url is "https://subdomain.workers.dev/", which is just the worker's domain name.
+global redirection code for cloudflare worker free deployment: The global redirection url is "https://name.username.workers.dev/", which is just the worker's domain name.
Click the following links to append mirrors to the file "default.redirect":
google recaptcha mirror
Last Modified: 12 December 2024
-update AI
+
Last Modified: 28 December 2024
+update AI engines
Last Modified: 25 December 2024
-remove udrop
+update AI engines
Example: "https://muweb.pages.dev/redirect?"
+Examples:
+"https://muweb.pages.dev/redirect?"
+"https://loud-moth-21.deno.dev/"
使用仓库 "https://github.com/torappinfo/fetch" 入口"deno.js" 部署Deno
cloudflare workers 全局重定向代码
@@ -113,8 +115,8 @@ product.dangdang.com::product.dangdangvvv.com
item.gome.com.cn::item.gomevvv.com.cn
Last Modified: 12 December 2024
-cleanup
+
Last Modified: 28 December 2024
+update AI engines
中医认为有香味的药物,也就是说挥发性物质长期服用的话会导致身体虚弱(会开窍漏气)。
+根据中医理论,香菜(也称为芫荽)被认为是一种具有温热性质的香味蔬菜,适量食用有助于健胃消食、驱风解毒等。然而,长期大量食用香菜可能导致身体虚弱或“漏气”的状态,因此中医建议应适度食用。
+西方对香菜的看法
+在西方,香菜的使用相对普遍,尤其是在墨西哥、印度和东南亚等地区的烹饪中。香菜被广泛用于调味,因其独特的香气和风味而受到许多人的喜爱。然而,关于香菜的食用量和频率,西方医学和营养学的观点与中医有所不同。
营养价值:香菜富含维生素C、维生素K、以及多种矿物质,适量食用可以为身体提供营养支持。研究表明,香菜具有抗氧化和抗炎特性,有助于改善消化和降低血糖水平。
+适量食用:虽然香菜的营养价值高,但西方的营养学家通常建议适量食用,避免过量。过量食用香菜可能导致一些消化不适,如腹胀或胃痛,尤其是对于那些对香菜敏感的人。
+个体差异:有些人对香菜的味道有强烈的反感,这与他们的基因有关。研究发现,某些人对香菜中的醛类物质特别敏感,可能会导致他们对香菜产生厌恶感。
+结论
+在西方,香菜可以作为日常饮食的一部分,但建议适量食用。
Last Modified: 5 January 2025
+
+
felo:https://felo.ai/search?q=
-百度AI:https://think.baidu.com/aisearch?word=
diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 59e15965..64ad7957 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -29,7 +29,7 @@ />felo:https://felo.ai/search?q=
monica:https://monica.so/answers?q=
+deepfind:https://www.deepfind.co/?q=
isou:https://isou.chat/search?q=
bagoodex:https://bagoodex.io/search?q=
andi:https://andisearch.com/?q=
+thinkany:https://thinkany.so/search?q=
phind:https://phind-ai.com/search?q=
xanswer:https://www.xanswer.com/search?q=
@@ -79,6 +81,7 @@lambda:i:0/js/uweb2ta.js:https://lambda.chat/chatui/#uweb=%s
blackbox:i:0/js/uweb2ta.js:https://www.blackbox.ai#10uweb=%s
EBAI:i:0/js/uweb2input.js:https://www.britannica.com/chatbot#uweb=%s
+correkt:i:0/js/uweb2ta.js:https://correkt.ai#uweb=%s
devv:i:0/js/uweb2edit.js:https://devv.ai#uweb=%3Cp%3E%s%3C/p%3E
duck.ai:i:0/js/uweb2ta.js:https://duckduckgo.com?ia=chat&q=h#uweb=%s
chatGPT:i:0/js/uweb2ta.js:https://chat.openai.com/#uweb=%s
@@ -86,6 +89,7 @@AI (uweb browser only and the search tab must be not in background. Appending "%250D" as ENTER key if needed.)
solab:i:0/js/uweb2ta2.js:https://www.solab.ai#uweb=%s
komo:i:0/js/uweb2ta2.js:https://komo.ai#uweb=%s
+hika:i:0/js/uweb2input2.js:https://hika.fyi/search#uweb=%s
Recommended engines:
Engines:i:40%s_00
bing image:http://bing.com/images/search?q=
@@ -274,7 +278,7 @@ alternativeto -Last Modified: 5 January 2025
+
Last Modified: 6 January 2025
add notes for '%250D'
Add AI enginesdiff --git a/en/sitemap.xml b/en/sitemap.xml index c5113472..d746d72b 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -19,7 +19,7 @@
%s
+代悟:i:0/js/uweb2edit.js:https://beta.daiwu.cn#uweb=%3Cp%3E%s%3C/p%3E openperplex:i:0/js/uweb2ta.js:https://openperplex.com#uweb=%s diff --git a/zh/search/index.html b/zh/search/index.html index f17c6667..ba9a42f0 100644 --- a/zh/search/index.html +++ b/zh/search/index.html @@ -71,7 +71,7 @@flo.ing:i:0/js/uweb2ta.js:https://flo.ing#uweb=%s
cueme:i:0/js/uweb2ta.js:https://cueme.cn#uweb=%s
思知:i:0/js/uweb2ta.js:https://www.sizhi.com#uweb=%s
-代悟:i:0/js/uweb2edit.js:https://beta.daiwu.cn#uweb= %s
代悟:i:0/js/uweb2edit.js:https://beta.daiwu.cn#uweb=%3Cp%3E%s%3C/p%3E
openperplex:i:0/js/uweb2ta.js:https://openperplex.com#uweb=%s
AI引擎 (超微浏览器且搜索窗口可见时生效,搜索串末尾添加"%250D"可起到自动回车作用,两次解码后"%250D"->"%0D"->CR键。另外"10uweb="中的"10"表示等待时间,单位为0.1秒。初始化耗时的网站可用。):
跃问:i:0/js/uweb2ta2.js:https://yuewen.cn/chats/new#uweb=%s
Last Modified: 5 January 2025
+
Last Modified: 7 January 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 64ad7957..c01ba61d 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -29,7 +29,7 @@ />
Last Modified: 1 January 2025
+
Last Modified: 4 February 2025
update AI engines
askmanyai:i:0/js/uweb2ta.js:https://www.askmanyai.cn/chat#uweb=%s
openperplex:i:0/js/uweb2ta.js:https://openperplex.com#uweb=%s
AI引擎 (超微浏览器且搜索窗口可见时生效,搜索串末尾添加"%250D"可起到自动回车作用,两次解码后"%250D"->"%0D"->CR键。另外"10uweb="中的"10"表示等待时间,单位为0.1秒。初始化耗时的网站可用。):
-跃问:i:0/js/uweb2ta2.js:https://yuewen.cn/chats/new#uweb=%s
硅基流动:i:0/js/uweb2ta2.js:https://cloud.siliconflow.cn/playground/chat#uweb=%s
+360bot:i:0/js/uweb2ta2.js:https://bot.n.cn#uweb=%s
+跃问:i:0/js/uweb2ta2.js:https://yuewen.cn/chats/new#uweb=%s
kimi:i:0/js/uweb2edit2.js:https://kimi.moonshot.cn#uweb=%s
taichu:i:0/js/uweb2ta2.js:https://taichu-web.ia.ac.cn/#/chat#uweb=%s
心流:i:0/js/uweb2ta2.js:https://m.iflow.cn#uweb=%s
-deepseek:i:0/js/uweb2ta2.js:https://chat.deepseek.com#uweb=%s
-讯飞:i:0/js/uweb2ta2.js:https://xinghuo.xfyun.cn/desk#uweb=%s
-360bot:i:0/js/uweb2ta2.js:https://bot.360.com#uweb=%s
豆包:i:0/js/uweb2ta2.js:https://www.doubao.com/chat/#10uweb=%s
海螺:i:0/js/uweb2ta2.js:https://hailuoai.com#uweb=%s
+讯飞:i:0/js/uweb2ta2.js:https://xinghuo.xfyun.cn/desk#uweb=%s
AI引擎 (ebrowser):
yw:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://yuewen.cn/chats/new
tc:i:q:bjs navigator.clipboard.writeText(%s)\nhttps://taichu-web.ia.ac.cn/#/chat
Last Modified: 3 February 2025
+
Last Modified: 9 February 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index c6be622d..72ea8eaa 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -29,7 +29,7 @@ />
940: Any urls as website with local html processing ("i:0m/..../xxx.html:url")
-Last Modified: 27 December 2024
-update AI engines
+
Last Modified: 13 February 2025
+bookmarklet to support argument
"shortcut/": dynamical shortcut, if not exist, then default to "bookmark".
-Last Modified: 15 December 2024
-update filenames
+
Last Modified: 13 February 2025
+bookmarklet to support argument
Last Modified: 10 December 2024
-update README
+
Last Modified: 12 February 2025
+bookmarklet to support argument
i:56 urls support CTRL_A to CTRL-Zdiff --git a/en/rjs/index.html b/en/rjs/index.html index eb05609f..ff7e5edb 100644 --- a/en/rjs/index.html +++ b/en/rjs/index.html @@ -57,6 +57,13 @@ google translation +
default.bml to define bookmarklet with argument. Each line of default.bml has the following format:
+[bookmarklet name]:[bookmarklet id with argument]
where [bookmarklet id with argument] could be:
+Note: Bookmarklets whose names begin with "!" are allowed to load remote js on CSP (Content Security Policy) sites.
Remote javascript is defined in default.rjs. Click the following link to install. (Force exit and re-launch the app, then long press the "search" button to popup the menu.):
@@ -77,8 +84,8 @@All remote js (default.rjs) are allowed to execute on CSP sites. Local js files without remote resource access work fine when under the folder "bookmarklet"; for those needing remote resource, file name must begin with "!". Others needs to be refered in default.rjs as http urls such as "https://local/..." (html5 or offline cache) .
-Last Modified: 14 December 2024
-cleanup
+
Last Modified: 13 February 2025
+bookmarklet to support argument
Ebrowser is designed with the philosophy of Android uweb browser (gitlab).


-Ebrowser is a simple version of uweb browser on the desktop.
This page is for uweb browser.
-Click to install the following local indexes with corresponding search engines (for test only).
install the indexes for "American heritage dictionary (en-en&zh with AHD/D.J./K.K. pronunciation)"
Install AHD to home screen
支持网址特定脚本/样式,可轻松支持百万以上不同脚本。
支持自定义任意多个搜索引擎; 支持执行用户提供任何js文件; 支持用户定义任意多个useragent; 长按链接支持运行第三方程序; 长按链接支持运行用户js文件。
配套安装uWeb定制Termux应用,可用地址栏作图(类似matlab功能)、超级计算器(无限精度/π的前万位或更多、无限函数、无限常量)、符号演算(解方程、分解因式、求积分导数)、离线字典查找等。譬如地址栏输入sin(x)**5就直接得到函数图形。利用好第三方代码,才能真正发挥出uWeb的潜能。
-可看作超微浏览器台式机简易版,用于弥补普通浏览器访问痛点。
超微浏览器下点击搜索引擎配置链接(或将配置文本添加到home5.search)中可自动添加到主屏。ebrowser下点击后可选择取消,此时地址栏会显示添加搜索引擎的i:内部链接,将其中引擎名改短(比如两个字母)作为快捷输入然后回车执行内部链接即可。
-AI 推荐 常用 语言 科技教材 国外 网盘 学术 开发 应用内 本地
+深度求索满血版 AI 推荐 常用 语言 科技教材 国外 网盘 学术 开发 应用内 本地
+deepseek满血版:
+秘塔ds:i:0/js/uweb2ta.js:https://metaso.cn#uweb=%s
百度ds:https://chat.baidu.com/deepseek?word=
+腾讯元宝:i:0/js/uweb2edit.js:https://yuanbao.tencent.com/chat?uweb=%3Cp%3E%s%3C/p%3E
+博查:i:0/js/uweb2ta.js:https://bochaai.com/#01uweb=%s
+askmanyai:i:0/js/uweb2ta.js:https://www.askmanyai.cn/chat#uweb=%s
+小艺:i:0/js/uweb2ta.js:https://xiaoyi.huawei.com/chat#uweb=%s
AI引擎:
秘塔:https://metaso.cn/?q=
秘塔ds:i:0/js/uweb2ta.js:https://metaso.cn#uweb=%s
天工:https://www.tiangong.cn/result?q=
felo:https://felo.ai/search?q=
kimi:https://kimi.moonshot.cn/_prefill_chat?force_search=true&send_immediately=true&prefill_prompt=
百度chat:https://chat.baidu.com/search?word=
-直答:https://zhida.zhihu.com/?q=
isou:https://isou.chat/search?q=
云言:https://ai.yunyan.chat/searchDetails?model=gpt-4o-mini&mode=simple&keyword=
@@ -67,17 +73,15 @@智谱清言:i:0/js/uweb2ta.js:https://chatglm.cn/main/alltoolsdetail#uweb=%s
qwen:i:0/js/uweb2ta.js:https://chat.qwenlm.ai#uweb=%s
百川:i:0/js/uweb2ta.js:https://www.baichuan-ai.com/chat#uweb=%s
-腾讯元宝:i:0/js/uweb2edit.js:https://yuanbao.tencent.com/chat?uweb=%3Cp%3E%s%3C/p%3E
知料觅得:i:0/js/uweb2input.js:https://www.sou100.com#uweb=%s
-博查:i:0/js/uweb2ta.js:https://bochaai.com/#01uweb=%s
flo.ing:i:0/js/uweb2ta.js:https://flo.ing#uweb=%s
cueme:i:0/js/uweb2ta.js:https://cueme.cn#uweb=%s
思知:i:0/js/uweb2ta.js:https://www.sizhi.com#uweb=%s
代悟:i:0/js/uweb2edit.js:https://beta.daiwu.cn#uweb=%3Cp%3E%s%3C/p%3E
-askmanyai:i:0/js/uweb2ta.js:https://www.askmanyai.cn/chat#uweb=%s
openperplex:i:0/js/uweb2ta.js:https://openperplex.com#uweb=%s
AI引擎 (超微浏览器且搜索窗口可见时生效,搜索串末尾添加"%250D"可起到自动回车作用,两次解码后"%250D"->"%0D"->CR键。另外"10uweb="中的"10"表示等待时间,单位为0.1秒。初始化耗时的网站可用。):
deepseek:i:0/js/uweb2ta2.js:https://chat.deepseek.com#uweb=%s
当贝:i:0/js/uweb2ta2.js:https://ai.dangbei.com/chat#uweb=%s
硅基流动:i:0/js/uweb2ta2.js:https://cloud.siliconflow.cn/playground/chat#uweb=%s
问小白:i:0/js/uweb2ta2.js:https://www.wenxiaobai.com#uweb=%s
360bot:i:0/js/uweb2ta2.js:https://bot.n.cn#uweb=%s
@@ -317,7 +321,7 @@ searxLast Modified: 14 February 2025
+
Last Modified: 20 February 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 0a5f503e..876a7442 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -29,7 +29,7 @@ />
本文以超微浏览器为例来说明。
-安装完tdict本地检索工具后,可选择性安装字典索引及对应的搜索引擎至主屏。以下引擎仅作测试使用。
安装双解字典索引
安装双解字典至主屏
以下工具需先安装uweb定制Termux应用,并启动一次完成初始化。
-安装完tdict词典工具以后,对dict目录下的汉语大字典文件如"dictXXX.xz"可在主屏.search文件配置如下字典查询:
汉语大字典:c:zd xz %s dictXXX
字典文件目录可通过修改termux下“~/share”符号链接来改动。也可使用其它压缩方式如zst,此时配置变为"zd zst %s dictXXX",相应的字典文件名为dictXXX.zst。用户需提供zsttool工具解压文本。
diff --git a/zh/topposts/index.xml b/zh/topposts/index.xml index 44237c26..a505b480 100644 --- a/zh/topposts/index.xml +++ b/zh/topposts/index.xml @@ -6,14 +6,14 @@硅基流动:i:0/js/uweb2ta2.js:https://cloud.siliconflow.cn/playground/chat#uweb=%s
问小白:i:0/js/uweb2ta2.js:https://www.wenxiaobai.com#uweb=%s
360bot:i:0/js/uweb2ta2.js:https://bot.n.cn#uweb=%s
+灵犀:i:0/js/uweb2edit2.js:https://copilot.wps.cn#uweb=%s
+oppoDS:i:0/js/uweb2input2.js:https://dhfs.heytapimage.com/userfiles/cms/ai_search/index.html#uweb=%s
跃问:i:0/js/uweb2ta2.js:https://yuewen.cn/chats/new#uweb=%s
taichu:i:0/js/uweb2ta2.js:https://taichu-web.ia.ac.cn/#/chat#uweb=%s
心流:i:0/js/uweb2ta2.js:https://m.iflow.cn#uweb=%s
@@ -329,7 +331,7 @@ -Last Modified: 20 February 2025
+
Last Modified: 21 February 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 876a7442..fcf373e5 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -29,7 +29,7 @@ />
使用超微浏览器点击下面链接将备份(恢复)目录/文件
%1%
使用超微浏览器点击下面链接将备份(恢复)目录/文件
%1%
+
使用超微浏览器点击下面链接将备份(恢复)目录/文件
tgz install::toybox tar -xzf %f -C /
+tgz install::cd /;toybox tar -xzf %f
Users should change the IP addresses in the following menus accordingly. In all cases, TV side needs to execute "wait for network msg" first. Send message to network (ex. for android TVs):
clip2PC:clip:cat|/system/bin/toybox nc 192.168.1.120 1500
PC2clip:/clip:/system/bin/toybox nc 192.168.1.120 1500
@@ -119,8 +119,8 @@ Clipboard2QR needs libqrencode. -Last Modified: 16 March 2025
-update AI engines
+
Last Modified: 30 March 2025
+tar -C / raised permission denied error
.profile : only for kshell with naked termux (no initial packages, need the following fix for termux quick crash to be launched)
Using uweb to copy (Long pressing the following links and "open in new tab" to fix/send/receive):
+Last Modified: 22 August 2024
-add more download sites
+
Last Modified: 30 March 2025
+bashrc: fix tdict LD_LIBRARY_PATH
输出logcat.log::logcat -d > logcat.log
-tgz install::toybox tar -xzf %f -C /
+tgz install::cd /;toybox tar -xzf %f
以下命令需修改接收端IP定制。另外,发送消息前接收端需首先执行“等待网络消息”命令。
发送剪贴板:clip/uweb:printf 'i:5ji:5b';cat
发送url::printf '%u'|/system/bin/toybox nc 192.168.2.155 1500
@@ -96,8 +96,8 @@ 剪贴板_二维码需安装libqrencode. -Last Modified: 17 March 2025
-update AI engines
+
Last Modified: 30 March 2025
+tar -C / raised permission denied error
documentsUI and other file managers have full access on termux internal folders.
+File system navigation:
With z.sh and commacd, user can reach any folder with few key stokes. Run "v" to launch uweb file manager on the current working directory, long click any file link to share.
Last Modified: 30 March 2025
-bashrc: fix tdict LD_LIBRARY_PATH
+use LD_LIBRARY_PATH for tdict
百度ds:https://chat.baidu.com/deepseek?word=
百度ai:https://chat.baidu.com/search?word=
-问小白:i:0/js/uwebset.js:https://www.wenxiaobai.com/chat/200006#10uweb=%s
+问小白:i:0/js/uwebset.js:https://www.wenxiaobai.com/chat/200006#20uweb=%s
跃问:i:0/js/uwebset.js:https://yuewen.cn/chats/new#uweb=%s
deepseek:i:0/js/uwebset.js:https://chat.deepseek.com#uweb=%s
心流:i:0/js/uwebset.js:https://m.iflow.cn#10uweb=%s
@@ -92,9 +92,9 @@openperplex:i:0/js/uweb2ta.js:https://openperplex.com#uweb=%s
AI引擎 (超微浏览器且搜索窗口可见时生效,"%s"后添加"%250D"可起到自动回车作用,两次解码后"%250D"->"%0D"->CR键。另外"10uweb="中的"10"表示等待时间,单位为0.1秒。初始化耗时的网站可用。):
deepseek:i:0/js/uweb2ta2.js:https://chat.deepseek.com#uweb=%s
当贝:i:0/js/uweb2edit2.js:https://ai.dangbei.com/chat#10uweb=%s
+当贝:i:0/js/uweb2edit2.js#1:https://ai.dangbei.com/chat#10uweb=%s
硅基流动:i:0/js/uweb2ta2.js:https://cloud.siliconflow.cn/playground/chat#uweb=%s
-问小白:i:0/js/uweb2ta2.js:https://www.wenxiaobai.com/chat/200006#10uweb=%s
+问小白:i:0/js/uweb2ta2.js:https://www.wenxiaobai.com/chat/200006#20uweb=%s
360bot:i:0/js/uweb2ta2.js:https://bot.n.cn#uweb=%s
灵犀:i:0/js/uweb2edit2.js:https://copilot.wps.cn#uweb=%s
openrouter:i:0/js/uweb2ta2.js:https://openrouter.ai/chat?models=deepseek/deepseek-r1:free#uweb=%s
@@ -339,7 +339,7 @@ -Last Modified: 27 March 2025
+
Last Modified: 31 March 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/searchurl/plugins.html b/zh/searchurl/plugins.html index 880f4470..cd2b1e8a 100644 --- a/zh/searchurl/plugins.html +++ b/zh/searchurl/plugins.html @@ -12,10 +12,10 @@
插件影响到浏览器的安全,故需要完成以下步骤才能开启插件管理系统:
openperplex:i:0/js/uweb2ta.js:https://openperplex.com#uweb=%s
AI引擎 (超微浏览器且搜索窗口可见时生效,"%s"后添加"%250D"可起到自动回车作用,两次解码后"%250D"->"%0D"->CR键。另外"10uweb="中的"10"表示等待时间,单位为0.1秒。初始化耗时的网站可用。):
deepseek:i:0/js/uweb2ta2.js:https://chat.deepseek.com#uweb=%s
当贝:i:0/js/uweb2edit2.js#1:https://ai.dangbei.com/chat#10uweb=%s
+当贝:i:0/js/uweb2edit2.js#1:https://ai.dangbei.com/#10uweb=%s
硅基流动:i:0/js/uweb2ta2.js:https://cloud.siliconflow.cn/playground/chat#uweb=%s
问小白:i:0/js/uweb2ta2.js:https://www.wenxiaobai.com/chat/200006#20uweb=%s
diff --git a/zh/sitemap.xml b/zh/sitemap.xml index c53f34ef..60b4cf5e 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -29,7 +29,7 @@ />超微浏览器下点击搜索引擎配置链接(或将配置文本添加到home5.search)中可自动添加到主屏。ebrowser下点击后可选择取消,此时地址栏会显示添加搜索引擎的i:内部链接,将其中引擎名改短(比如两个字母)作为快捷输入然后回车执行内部链接即可。
-深度求索满血版 AI 推荐 常用 语言 科技教材 国外 网盘 学术 开发 应用内 本地
+深度求索满血版 AI 推荐 常用 语言 科技教材 国外 网盘 学术 开发 应用内 本地 网址变引擎
deepseek满血版:(超微浏览器"%s"后添加"%250D"可起到自动回车作用, ebrowser添加"%0D")
秘塔ds:i:0/js/uweb2ta.js:https://metaso.cn#uweb=%s
alphachain:i:0/js/uweb2ta.js:https://alphachain.net.cn/#/chat/#uweb=%s
小艺:i:0/js/uweb2ta.js:https://xiaoyi.huawei.com/chat#uweb=%s
360bot:i:0/js/uwebset.js:https://bot.n.cn#uweb=%s
+注:
+AI引擎:
秘塔:https://metaso.cn/?q=
felo:https://felo.ai/search?q=
@@ -331,6 +336,8 @@ searx以当贝AI为例,其搜索引擎url为"i:0/js/uweb2edit2.js#1:https://ai.dangbei.com/#10uweb=%s"。代码"uweb2edit2.js"负责将"%s"填入到编辑框。代码后面所带参数"#1"点击第二个按钮,从而默认打开互联网搜索。用户可提供自有脚本,比如"i:0/sdcard/Download/my.js",此时脚本"my.js"位于系统下载目录。如果脚本最后字符为")"并非编辑器自动添加的回车,则脚本允许带参数使用。"#"也可用来连接多个脚本,比如"i:0/js/uweb2edit2.js#1#/sdcard/my.js#1"。
Last Modified: 31 March 2025
+
Last Modified: 1 April 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 60b4cf5e..d8d2d5a4 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -3,7 +3,7 @@ xmlns:xhtml="http://www.w3.org/1999/xhtml">
搜索配置小技巧
-纳米搜索默认不使用deepseek, 但如果没有输入内容空搜一次,此时在网页界面上打开deepseek开关,那么以后每次搜索都会默认使用deepseek。
搜索配置小技巧
+免魔法国内直接使用系列
使用重定向访问国外技术网址
目录配置及使用外部文件管理器
@@ -69,8 +72,8 @@ UA为非默认时,点击PC按钮将恢复UA为默认,同时触发不保存UA
配置文件列表中直接点击文件名即可编辑。
Last Modified: 6 March 2025
-add monica.im
+
Last Modified: 1 April 2025
+Add notes to AI engines
点击安装底部工具条共享按钮长按弹出菜单:
+地址栏
+换行
+CTRL-Z: undo
+CTRL-Y: redo
长按共享按钮弹出文件"default.input"定义菜单,文件每行为常用语。 常用语可以"@xxxx@"开头作为化名,方便用户区分无显示短语。
+点击以下链接可安装至 常用链接 (长按底部五角星书签按钮):
+utf8编码文件作为键盘输入
常用语或AI提示词可放在文件"default.autoc"或其它“.autoc”文件中作为自动补全备选。地址栏如以空格开头,选中的补全备选会作为键盘输入到被聚焦的页面元素中。
+地址栏文本选择操作模式菜单项"⌨️"将文本输入到被聚焦的页面元素中。
+部件檢索等网页可输出至地址栏。用户亦可安装常用命令或链接直接处理地址栏文本。
+ +Last Modified: 15 October 2025
+add zh/_posts/input.md
+
Last Modified: 13 October 2025
-update README
+
Last Modified: 15 October 2025
+add zh/_posts/input.md
Click the following links to install menus displayed by long pressing the bookmark button (with star as icon):
Select utf8 text file as keyboard input
"default.autoc" or other .autoc files when choosen are loaded for address bar autocompletion. If the address bar text starts with space, the selected text is treated as user input for focused element in the visible tab.
Here are a few links for AI prompts, you could put them in the file "default.autoc" or other .autoc files:
-When the input in main home screen starts with "space+newline", the effective query is addressbar+input.
+Action mode menu item "⌨️" for address bar selection makes the text user input for focused element in the visible tab.
Text processing commands or links can be installed as menus to process address bar text, thus makes address bar powerful IME.
-Last Modified: 13 October 2025
-enable address bar as IME
+
Last Modified: 28 October 2025
+update input.md
Uweb browser: downloads, plugins and tips
(Mirrors: gitlab frama codeberg repo fleek netlify surge kinsta zeabur deno bitbucket pages vercel render More...)
Last Modified: 12 October 2025
-update README
+
Last Modified: 28 October 2025
+update input.md
Ebrowser is designed with the philosophy of Android uweb browser (gitlab).
You can copy or modify the code/program under the terms of the GPL3.0 or later versions.
-Last Modified: 27 May 2025
-update AI engines
+
Last Modified: 4 November 2025
+update ebrowser.md
Last Modified: 30 October 2025
-add AI prompts
+uweb1139: \n support in .input & .autoc files
Click the following links to install menus for long pressing the button "link":
-Copy text to address bar
note.ms: cloud text sharing, please replace "ric" with your favorite ID
Copy selected text with html format to clipboard
@@ -80,6 +82,7 @@ It formats as "[input mimetype]/[output mimetype]".Last Modified: 29 October 2025
-add mimetype uwebAddr
+
Last Modified: 6 November 2025
+add mimetype termuxS
Last Modified: 30 October 2025
-add AI prompts
+uweb1139: \n support in .input & .autoc files
Last Modified: 29 October 2025
-add mimetype uwebAddr
+
Last Modified: 31 October 2025
+update ebrowser.md
点击以下链接可安装长按“链接”按钮菜单:
-地址栏
本文功能特别适用于超出剪贴板容量的长文本处理/共享/AI。
+点击以下链接可安装长按“链接”按钮菜单:
+共享选中文本/网页内容
网络剪贴板:更改ric为其它未使用标识
note.ms:更改ric为其它未使用标识
bing翻译
@@ -77,6 +80,8 @@ mimetype用来表示命令的输入输出类型。格式为"[输入mimetype
html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
/uweb: 选中文本为txt格式, 输出mimetype为特殊扩充uweb,超微将把输出作为链接来处理。
/uwebA: 超微将把输出作为"单一"链接来处理。
+/uwebAddr: 输出到地址栏。
+/uwebS: 共享
/termux: 命令运行结果将作为termux下命令运行。
checked.js: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附"?[文件前缀][[文件后缀]]"。譬如"file:///sdcard/?.png"会列举出"/sdcard"目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)
配置default.select如下:
@@ -95,8 +100,8 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
pclip
Last Modified: 29 October 2025
-add mimetype uwebAddr
+
Last Modified: 6 November 2025
+add mimetype termuxS
中医认为有香味的药物,也就是说挥发性物质长期服用的话会导致身体虚弱(会开窍漏气)。
-根据中医理论,香菜(也称为芫荽)被认为是一种具有温热性质的香味蔬菜,适量食用有助于健胃消食、驱风解毒等。然而,长期大量食用香菜可能导致身体虚弱或“漏气”的状态,因此中医建议应适度食用。
-西方对香菜的看法
-在西方,香菜的使用相对普遍,尤其是在墨西哥、印度和东南亚等地区的烹饪中。香菜被广泛用于调味,因其独特的香气和风味而受到许多人的喜爱。然而,关于香菜的食用量和频率,西方医学和营养学的观点与中医有所不同。
营养价值:香菜富含维生素C、维生素K、以及多种矿物质,适量食用可以为身体提供营养支持。研究表明,香菜具有抗氧化和抗炎特性,有助于改善消化和降低血糖水平。
-适量食用:虽然香菜的营养价值高,但西方的营养学家通常建议适量食用,避免过量。过量食用香菜可能导致一些消化不适,如腹胀或胃痛,尤其是对于那些对香菜敏感的人。
-个体差异:有些人对香菜的味道有强烈的反感,这与他们的基因有关。研究发现,某些人对香菜中的醛类物质特别敏感,可能会导致他们对香菜产生厌恶感。
-结论
-在西方,香菜可以作为日常饮食的一部分,但建议适量食用。
Last Modified: 5 January 2025
-
-
Click the following links to install menus for long pressing the button "link":
Share
note.ms: cloud text sharing, please replace "ric" with your favorite ID
Copy selected text with html format to clipboard
@@ -98,7 +98,7 @@ PCs need command "xsel" available to operate on copy/paste.Last Modified: 6 November 2025
-add mimetype termuxS
+add mimetype uwebS for sharing
本文功能特别适用于超出剪贴板容量的长文本处理/共享/AI。
点击以下链接可安装长按“链接”按钮菜单:
共享选中文本/网页内容
网络剪贴板:更改ric为其它未使用标识
note.ms:更改ric为其它未使用标识
Last Modified: 6 November 2025
-add mimetype termuxS
+add mimetype uwebS for sharing
Click the following links to install menus for long pressing the button "link":
Share
note.ms: cloud text sharing, please replace "ric" with your favorite ID
Copy selected text with html format to clipboard
@@ -98,7 +98,7 @@ PCs need command "xsel" available to operate on copy/paste.Last Modified: 6 November 2025
-add mimetype uwebS for sharing
+use echo -n instead of printf
Last Modified: 12 November 2025
-update AI engines
+use uweb.codeberg
超微浏览器下载及使用技巧
-(镜像: atomgit gitlab frama repo codeberg github render surge netlify pgs kinsta fleek pages bitbucket torapp torappv zeabur static statichost vercel 专用镜像...)
Last Modified: 7 November 2025
-rewording
+
Last Modified: 12 November 2025
+use uweb.codeberg
Ebrowser is designed with the philosophy of Android uweb browser (gitlab).
Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight. Recommend to install electron separately.
-Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight.
+You can find prebuilt binaries here.
-Either download (Click the green "Code" button above the file list => Select "Download ZIP") and unzip from
https://github.com/torappinfo/ebrowser
@@ -72,21 +72,21 @@
npm install ebrowser
OR download/"git clone" files directly from any of mirror repositories and ebrowser is under the folder "misc/ebrowser".
-Before you can run ebrowser, you need to install electron either with nodejs by
npm install electron
OR download and unzip electron binary directly from github or mirrors like npmmirror.
-electron ~/node_modules/ebrowser
OR
electron [the-path-of-folder-with-downloaded-ebrowser-files]
-Pressing "Alt" to show the menu bar and choose "Check for updates" under "Help". OR
Type ":update" in the address bar and press "enter" key to update.
-Like any popular browser, the very first word in address bar if defined in "search.json" identifies a search engine. Moreover, the address bar serves as command line interface:
Pressing "ESC" to enter no-focus mode if not sure.
The other commands are defined in "mapkeys.json", which will map keys to address bar commands.
-:js bJS=true //allow external Javascript files for web pages
:js bJS=false //disallow external Javascript files for web pages
:bjs bHistory=true //to record url history
:bjs bQueryHistory=true //to record query/command history
-Vector designing with web tech to replace Adobe Illustrator/Inkscape.
@@ -220,12 +220,12 @@You can copy or modify the code/program under the terms of the GPL3.0 or later versions.
-Last Modified: 4 November 2025
-update ebrowser.md
+
Last Modified: 12 November 2025
+optimize ebrowser README
"default.autoc" or other .autoc files when choosen are loaded for address bar autocompletion. If the address bar text starts with space, the selected text is treated as user input for focused element in the visible tab.
Click the following links to append AI prompts:
-Fetch the data from the above URL and
More AI prompts, you could put them in the file "default.autoc" or other .autoc files:
Text processing commands or links can be installed as menus to process address bar text, thus makes address bar powerful IME.
-Last Modified: 30 October 2025
-uweb1139: \n support in .input & .autoc files
+
Last Modified: 13 November 2025
+puterjs.com is blocked now
gitee
gitea
+tngl
notabug
launchpad
framagit
@@ -103,11 +104,12 @@
dagshub
gitnet
tilde
-antopie
Last Modified: 11 November 2025
-using inline tag <span> to supress possible markdown parsing
+
Last Modified: 12 November 2025
+add tangled
超微浏览器下载及使用技巧
-(镜像: atomgit gitlab frama repo codeberg github render surge netlify pgs kinsta fleek pages bitbucket torapp torappv zeabur static statichost vercel 专用镜像...)
Last Modified: 12 November 2025
-use uweb.codeberg
+
Last Modified: 14 November 2025
+puterjs.com is blocked now
Last Modified: 14 November 2025
+
Last Modified: 15 November 2025
puterjs.com is blocked now
Last Modified: 13 November 2025
-puterjs.com is blocked now
+update AI engines
Last Modified: 15 November 2025
-puterjs.com is blocked now
+update AI engines
秘塔ds:i:0/js/uwebset.js:https://metaso.cn#uweb=%s%250D
问小白:i:0/js/uwebset.js:https://www.wenxiaobai.com/chat/200006#20uweb=%s%250D
+在问:i:0/js/uwebset.js:https://zaiwen.xueban.org.cn/chat/#uweb=%s
跃问:i:0/js/uwebset.js:https://yuewen.cn/chats/new#uweb=%s
deepseek:i:0/js/uwebset.js:https://chat.deepseek.com#uweb=%s
心流:i:0/js/uwebset.js:https://m.iflow.cn#10uweb=%s
@@ -101,11 +102,10 @@ PC模式 + 勾选选项"宽屏显示" + 全局脚本"强制缩放思知:i:0/js/uweb2ta.js:https://www.sizhi.com#uweb=%s
天工:i:0/js/uweb2ta.js:https://www.tiangong.cn?skill_id=100&uweb=%s
openperplex:i:0/js/uweb2ta.js:https://openperplex.com#uweb=%s
-gpt5:https://local/ht/puter.html?gpt-5=
-gpt4o-mini:https://local/ht/puter.html?=
+gpt5.1:https://local/ht/puter.html?=
DALL·E3:https://local/ht/txt2img.html?
o4-mini:https://local/ht/puter.html?o4-mini=
-claude-sonnet4:https://local/ht/puter.html?claude-sonnet-4=
+claude-sonnet4:https://local/ht/puter.html?claude-sonnet-4-5=
claude-opus4:https://local/ht/puter.html?claude-opus-4=
gemini2.5propreview:https://local/ht/puter.html?google/gemini-2.5-pro-preview=
gemini2.5flashpreview:https://local/ht/puter.html?google/gemini-2.5-flash-preview=
@@ -329,7 +329,7 @@ PC模式 + 勾选选项"宽屏显示" + 全局脚本"强制缩放 -Last Modified: 8 November 2025
+
Last Modified: 15 November 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 8113c6ea..dc8edbaf 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -29,7 +29,7 @@ />
Last Modified: 13 November 2025
-update AI engines
+update search engines
To show web pages in desktop mode
-PC button + option "wide viewport" + global js "force page resizable".
Playing audio when screen off
Option "Floating video" + video fullscreen playing
Multiple home screens and Next/Prev page
@@ -66,8 +67,8 @@ The resulted offline file can be used as one of the home screens.
Last Modified: 12 October 2025
-update README
+
Last Modified: 23 November 2025
+reflow text for wider dialog
Last Modified: 15 November 2025
-update AI engines
+update search engines
超微浏览器下点击搜索引擎配置链接(或将配置文本添加到home5.search)中可自动添加到主屏。ebrowser下点击后可选择取消,此时地址栏会显示添加搜索引擎的i:内部链接,将其中引擎名改短(比如两个字母)作为快捷输入然后发送执行内部链接即可。
深度求索满血版 AI 推荐 常用 语言 科技教材 国外 网盘 学术 开发 应用内 本地 网址变引擎
-deepseek满血版:(超微浏览器"%s"后添加"%250D"可自动发送, ebrowser添加"%0D")
+
deepseek满血版:(超微浏览器"%s"后添加"%250D"作为Enter↵自动发送; ebrowser添加"%0D")
纳米:https://n.cn/search/?src=ec_vivo_1002&q=
秘塔ds:i:0/js/uwebset.js:https://metaso.cn#uweb=%s%250D
问小白:i:0/js/uwebset.js:https://www.wenxiaobai.com/chat/200006#20uweb=%s%250D
-在问:i:0/js/uwebset.js:https://zaiwen.xueban.org.cn/chat/#uweb=%s
跃问:i:0/js/uwebset.js:https://yuewen.cn/chats/new#uweb=%s
deepseek:i:0/js/uwebset.js:https://chat.deepseek.com#uweb=%s
心流:i:0/js/uwebset.js:https://m.iflow.cn#10uweb=%s
@@ -64,13 +63,13 @@minimax:i:0/js/uwebset.js:https://chat.minimax.io#uweb=%s
直答:https://zhida.zhihu.com/?q=
gitcode:i:0/js/uwebset.js:https://tianqi.gitcode.com/#uweb=%s%250D
-火山方舟:i:0/js/uweb2ta.js:https://www.volcengine.com/experience/ark#10uweb=%s
askmanyai:i:0/js/uweb2ta.js:https://www.askmanyai.cn/chat#uweb=%s
-alphachain:i:0/js/uweb2ta.js:https://alphachain.net.cn/#/chat/#uweb=%s
openrouter:i:0/js/uwebset.js:https://openrouter.ai/chat?models=deepseek/deepseek-r1:free?uweb=%s
硅基流动:i:0/js/uwebset.js:https://cloud.siliconflow.cn/playground/chat?uweb=%s%250D
小艺:i:0/js/uweb2ta.js:https://xiaoyi.huawei.com/chat#uweb=%s
智慧岛:i:0/js/uwebset.js:https://chat.lify.vip/chat#uweb=%s
+火山方舟:i:0/js/uweb2ta.js:https://www.volcengine.com/experience/ark#10uweb=%s
+在问:i:0/js/uwebset.js:https://zaiwen.xueban.org.cn/chat/#uweb=%s
注:
gemini2.5propreview:https://local/ht/puter.html?google/gemini-2.5-pro-preview=
gemini2.5flashpreview:https://local/ht/puter.html?google/gemini-2.5-flash-preview=
grok4:https://local/ht/puter.html?x-ai/grok-4=
-AI引擎 (搜索窗口可见时生效,超微浏览器"%s"后添加"%250D"可自动发送,两次解码后"%250D"->"%0D"->发送键。另外"10uweb="中的"10"表示等待时间,单位为0.1秒。初始化耗时的网站可用。):
+
AI引擎 (搜索窗口可见时生效,超微浏览器"%s"后添加"%250D"作为Enter↵或"%250D%250A"作为Ctrl+Enter↵自动发送,两次解码后"%250D"->"%0D"->发送键。另外"10uweb="中的"10"表示等待时间,单位为0.1秒。初始化耗时的网站可用。):
当贝:i:0/js/uweb2edit2.js:https://ai.dangbei.com/chat#10uweb=%s
当贝s:i:0/js/uweb2edit2.js#0:https://ai.dangbei.com/search#10uweb=%s
灵犀:i:0/js/uweb2edit2.js:https://copilot.wps.cn#uweb=%s
@@ -122,6 +121,7 @@ PC模式 + 勾选选项"宽屏显示" + 全局脚本"强制缩放apkdl:https://apkdl.in/app/search?q=
5577:http://s.5577.com/sousuo/m/?k=
当快:https://search.downkuai.com/searcht.html?keyword=
+软件聚搜:https://rjjs.cc/search?platform_category_id=2?q=
apkbog:https://www.apkbog.com/en/apks/search/
@@ -329,7 +329,7 @@ PC模式 + 勾选选项"宽屏显示" + 全局脚本"强制缩放Last Modified: 15 November 2025
+
Last Modified: 17 November 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index dc8edbaf..39d225d5 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -3,7 +3,7 @@ xmlns:xhtml="http://www.w3.org/1999/xhtml">
准确显示PC网页:
-PC模式 + 勾选选项"宽屏显示" + 全局脚本"强制缩放"。
多主屏:
home5.html为自定义主屏,home6.mht/home6.search/home6.html, home7.search ...为多主屏(前进按钮可进)。同前缀文件中.mht文件优先于.search文件优先于.html文件。home4.html, home3.html ... (长按后退按钮可进)。
自动翻页
@@ -73,8 +74,8 @@ UA为非默认时,点击PC按钮将恢复UA为默认,同时触发不保存UA
配置文件列表中直接点击文件名即可编辑。
Last Modified: 12 October 2025
-update README
+
Last Modified: 23 November 2025
+reflow text for wider dialog
超微浏览器下载及使用技巧
-(镜像: grebe gitlab frama repo codeberg github render surge netlify pgs kinsta fleek pages bitbucket torapp torappv zeabur static statichost vercel 专用镜像...)
Last Modified: 15 November 2025
+
Last Modified: 27 November 2025
update search engines
博查:i:0/js/uweb2ta.js:https://bochaai.com/#01uweb=%s
minimax:i:0/js/uwebset.js:https://chat.minimax.io#uweb=%s
直答:https://zhida.zhihu.com/?q=
-gitcode:i:0/js/uwebset.js:https://tianqi.gitcode.com/#uweb=%s%250D
askmanyai:i:0/js/uweb2ta.js:https://www.askmanyai.cn/chat#uweb=%s
openrouter:i:0/js/uwebset.js:https://openrouter.ai/chat?models=deepseek/deepseek-r1:free?uweb=%s
硅基流动:i:0/js/uwebset.js:https://cloud.siliconflow.cn/playground/chat?uweb=%s%250D
@@ -202,7 +201,8 @@ PC模式 + 勾选选项"宽屏显示" + 全局脚本"强制缩放etymology:https://www.etymonline.com/search?q=
glosbe:https://glosbe.com/en/zh/
dict.naver:https://dict.naver.com/enendict/english/#/search?query=
- +有道词典:https://youdao.com/result?lang=en&word=
+剑桥双解:https://dictionary.cambridge.org/dictionary/english-chinese-simplified/
webster:https://www.merriam-webster.com/dictionary/
@@ -329,7 +329,7 @@ PC模式 + 勾选选项"宽屏显示" + 全局脚本"强制缩放 -Last Modified: 17 November 2025
+
Last Modified: 27 November 2025
add notes for '%250D'
24.02.26 添加网盘搜索引擎diff --git a/zh/sitemap.xml b/zh/sitemap.xml index 39d225d5..242ab672 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -29,7 +29,7 @@ />
The following mentioned subfolders locate in the configuration folder.
The following html5 applications are allowed to read local files referred by "https://local/appXXX/..." where the "/appXXX/" part is the subfolder name that must begins with "app". The below applications can auto choose any files as file objects.
+The following html5 applications are allowed to read local files referred by "https://l/appXXX/..." where the "/appXXX/" part is the subfolder name that must begins with "app". The below applications can auto choose any files as file objects.
Use the mdx scanning bookmark to add mdict engines automatically, then cold start uweb browser to take effect.
-Last Modified: 29 July 2025
-cleanup https://local/ documents
+
Last Modified: 2 December 2025
+use https://l/ instead of local
monica.im:https://monica.im/home/chat/deepseek-r1/deepseek_reasoner?q=
monica:https://monica.so/answers?q=
giz:https://app.giz.ai/assistant?mode=chat&prompt=
+longcat:i:0/js/uweb2edit.js:https://longcat.chat/#uweb=%3Cp%3E%s%3C/p%3E
lmarena:i:0/js/uwebset.js:https://lmarena.ai/#uweb=%s
miromind:i:0/js/uwebset.js:https://dr.miromind.ai/#uweb=%s
txyz:i:0/js/uwebset.js:https://app.txyz.ai#uweb=%s
@@ -292,7 +293,7 @@ alternativeto -Last Modified: 26 September 2025
+
Last Modified: 5 December 2025
add notes for '%250D'
Add AI enginesdiff --git a/en/sitemap.xml b/en/sitemap.xml index 384e7cf4..7dc669e6 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -3,7 +3,7 @@ xmlns:xhtml="http://www.w3.org/1999/xhtml">
Click download button on the bottom toolbar to save remote webpage
The resulted offline file can be used as one of the home screens.
Configuration folder and file managers
-With bookmark, configuration folders can be symbolic linked to other public folders or managed by 3rd party file managers via termux.
With bookmark, configuration folders can be symbolic linked to other public folders or managed by 3rd party file managers via termux.
+Visiting file urls ending with "/" enters internal file manager, you can run any command with address bar with the format "d::command line:" to execute "command line" in the current folder of the internal file manager. For examples:
+"d::touch a.txt:" to create a new file a.txt.
+"d::mkdir subdir:" to create a new folder names "subdir".
+"d::mv old new:" to rename the file "old" to be "new".
Last Modified: 23 November 2025
-reflow text for wider dialog
+
Last Modified: 5 December 2025
+add documents to run shell command on address bar
md in no-focus mode to preview markdown file.Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight.
+
You can find prebuilt binaries here.
Either download (Click the green "Code" button above the file list => Select "Download ZIP") and unzip from
+Either download (Click the green Code button above the file list => Select Download ZIP) and unzip from
https://github.com/torappinfo/ebrowser
OR download and unzip ebrowser package directly from any of npm mirror sites like npmmirror or with nodejs by
npm install ebrowser
-OR download/"git clone" files directly from any of mirror repositories and ebrowser is under the folder "misc/ebrowser".
+OR download/git clone files directly from any of mirror repositories and ebrowser is under the folder misc/ebrowser.
Before you can run ebrowser, you need to install electron either with nodejs by
npm install electron
@@ -84,8 +86,8 @@
electron [the-path-of-folder-with-downloaded-ebrowser-files]
Update app quickly without updating chromium
-Pressing "Alt" to show the menu bar and choose "Check for updates" under "Help". OR
-Type ":update" in the address bar and press "enter" key to update.
+Pressing Alt to show the menu bar and choose Check for updates under Help. OR
+Type :update in the address bar and press enter key to update.
Key shortcuts
- Alt: show menu
@@ -99,7 +101,7 @@
- CTRL+TAB: switch to next tab
- CTRL+SHIFT+TAB: switch to previous tab
- CTRL+W: close Tab
-- CTRL+SHIFT+R: enable global redirection ("gredirect.json")
+- CTRL+SHIFT+R: enable global redirection (
gredirect.json)
- CTRL+R: disable global redirection
- ESC: remove focus. similar to vi normal mode.
- F1: Help
@@ -107,12 +109,12 @@
- F12: devtools
Address bar commands
-Like any popular browser, the very first word in address bar if defined in "search.json" identifies a search engine. Moreover, the address bar serves as command line interface:
+Like any popular browser, the very first word in address bar if defined in search.json identifies a search engine. Moreover, the address bar serves as command line interface:
- "/" for find-in-page
- ":" for address bar commands
-- ac [bookmark/history path w/o ext] : load ".rec" file for autocomplete.
+- ac [bookmark/history path w/o ext] : load
.rec file for autocomplete.
- b [bookmarkfilename w/o ext] : bookmark current page in file.
- bjs : Browser-level JavaScript execution.
- bml [filename w/o extension] [arguments...]: load/execute the javascript file.
@@ -224,8 +226,8 @@
You can copy or modify the code/program under the terms of the GPL3.0 or later versions.
-Last Modified: 12 November 2025
-optimize ebrowser README
+
Last Modified: 8 December 2025
+use ` for terms
diff --git a/en/filemanager/index.html b/en/filemanager/index.html
new file mode 100644
index 00000000..2d3f6597
--- /dev/null
+++ b/en/filemanager/index.html
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+ File manager
+
+
+
+
+ Home Tags
+
+
+ 简体中文
+
+
+
+
+
+
+
+ File manager
+
+
+
+
+ Visiting file urls ending with "/" enters internal file manager.
+When the current tab is internal file manager, visiting file url for a file shows the content of the file, long pressing button "🕔" -> Editor loads line-based editor for the file. If the file does not exist, saving creates a new file.
+Running any command with address bar with the format "d::command line:" to execute "command line" in the current folder of the internal file manager. Ex:
+"d::touch a.txt:" to create a new file a.txt.
+"d::mkdir subdir:" to create a new folder names "subdir".
+"d::mv old new:" to rename the file "old" to be "new".
+
+
+Last Modified: 5 December 2025
+add filemanager.md
+
+
+
+
+
+
+
+
+
+
+
diff --git a/en/index.html b/en/index.html
index b4f49711..2f1af926 100644
--- a/en/index.html
+++ b/en/index.html
@@ -53,6 +53,12 @@
+ -
+
+ Url services
+
+
+
-
Search engine query URLs
@@ -71,12 +77,6 @@
- -
-
- Url services
-
-
-
-
Commands
@@ -98,8 +98,8 @@
-
-
- Phrases and input method
+
+ File manager
@@ -109,6 +109,12 @@
+ -
+
+ Phrases and input method
+
+
+
-
Context menu
diff --git a/en/index.xml b/en/index.xml
index 2a0ff0e9..b0d79b05 100644
--- a/en/index.xml
+++ b/en/index.xml
@@ -6,8 +6,29 @@
Recent content on uweb browser: unlimited power
Hugo
en
- Fri, 05 Dec 2025 19:03:32 +0800
+ Tue, 30 Dec 2025 23:10:52 +0800
+ -
+
Url services
+ https://jamesfengcao.gitlab.io/uweb/en/urls/
+ Tue, 30 Dec 2025 00:00:00 +0000
+ https://jamesfengcao.gitlab.io/uweb/en/urls/
+ <p>With uweb version 1144+, urls in configure file <code>default.urls</code> now support <a href="../cmds/index.html#">"%u","%t" etc.</a>. For lower versions, please remove the ending "%u" in each line.</p>
<p>Click the following links to install url services with <a href="../index.html#">uweb browser</a> or <a href="../ebrowserreadme/index.html#">ebrowser</a>. <b>Force exit and re-launch the app</b>, then long press the "image" button to popup the menu.</p>
<p><a href="i:01Fullscreen video:i:5f%25u">Fullscreen video:i:5f%u</a></p>
<p><a href="i:01Redirect/edit:e:%25u">Redirect/edit:e:%u</a></p>
<p><a href="i:01Save2autocomplete:i:51:%25u">Save2autocomplete:i:51:%u</a></p>
<p><a href="i:01Bookmark:i:52:%25u">Bookmark:i:52:%u</a></p>
<p><a href="i:01Note:i:53:%25u">Note:i:53:%u</a></p>
<p><a href="i:01Save engine:i:54:%25u">Save engine:i:54:%u</a></p>
<p><a href="i:01Save link:i:55:%25u">Save link:i:55:%u</a></p>
<p><a href="i:01Save to desktop:i:58%25u">Save to desktop:i:58%u</a></p>
<p><a href="i:01markdownview:i:0m-/js/mdview.html:%25u">markdownview:i:0m-/js/mdview.html:%u</a></p>
<p><a href="i:01Reader:i:0/js/reader.html:%25u">Reader:i:0/js/reader.html:%u</a></p>
+
+ -
+
File manager
+ https://jamesfengcao.gitlab.io/uweb/en/filemanager/
+ Fri, 05 Dec 2025 00:00:00 +0000
+ https://jamesfengcao.gitlab.io/uweb/en/filemanager/
+ <p>Visiting file urls ending with "/" enters internal file manager.</p>
<p>When the current tab is internal file manager, visiting file url for a file shows the content of the file, long pressing button "🕔" -> Editor loads line-based editor for the file. If the file does not exist, saving creates a new file.</p>
<p>Running any command with address bar with the format "d::command line:" to execute "command line" in the current folder of the internal file manager. Ex:<br>
"d::touch a.txt:" to create a new file a.txt.<br>
"d::mkdir subdir:" to create a new folder names "subdir".<br>
"d::mv old new:" to rename the file "old" to be "new".</p>
+
+ -
+
Tips
+ https://jamesfengcao.gitlab.io/uweb/en/tips/
+ Fri, 05 Dec 2025 00:00:00 +0000
+ https://jamesfengcao.gitlab.io/uweb/en/tips/
+ <p><strong>Address bar autocompletion as input method when starting with space</strong><br>
When address bar text starts with space, the autocompletion selection is inserted to the focused element on the web page. It could be used to choose AI prompts.</p>
<p><strong>Text processing for clipboard data</strong><br>
On home screen, pressing the sharing button of the bottom toolbar popups the <a href="../textprocess/index.html#">text processing menu</a> for clipboard data.</p>
<p><strong>To show web pages in desktop mode</strong><br>
PC button + option "wide viewport" + global js "force page resizable".<br>
If some dialog is wider than the screen, press "📄" on the bottom toolbar.</p>
+
-
Phrases and input method
https://jamesfengcao.gitlab.io/uweb/en/input/
@@ -15,13 +36,6 @@
https://jamesfengcao.gitlab.io/uweb/en/input/
<h4 id="defaultinput">"default.input"</h4>
<p>Click the following links to install menus popped by long pressing the share button (with arrow-out-of-square as icon) on the bottom toolbar:<br>
<a href="i:0gdefault.input::@AddrBar%0A">Address Bar</a><br>
<a href="i:0gdefault.input::%20\n%0A">New line</a><br>
<a href="i:0gdefault.input::@^Z@%1A%0A">CTRL-Z: undo</a><br>
<a href="i:0gdefault.input::@^Y@%19%0A">CTRL-Y: redo</a></p>
<p>Long pressing the share button in <a href="../index.html#">uweb browser</a> will popup menus defined in file "default.input", each line of which defines common phrase for user inputs. If the phrase begins with "@xxxx@", then "xxxx" part is the alias for the rest part of the string. Alias could be used for non-printable phrases.</p>
- -
-
Tips
- https://jamesfengcao.gitlab.io/uweb/en/tips/
- Sat, 11 Oct 2025 00:00:00 +0000
- https://jamesfengcao.gitlab.io/uweb/en/tips/
- <p><strong>Address bar autocompletion as input method when starting with space</strong><br>
When address bar text starts with space, the autocompletion selection is inserted to the focused element on the web page. It could be used to choose AI prompts.</p>
<p><strong>Text processing for clipboard data</strong><br>
On home screen, pressing the sharing button of the bottom toolbar popups the <a href="../textprocess/index.html#">text processing menu</a> for clipboard data.</p>
<p><strong>To show web pages in desktop mode</strong><br>
PC button + option "wide viewport" + global js "force page resizable".<br>
If some dialog is wider than the screen, press "📄" on the bottom toolbar.</p>
-
-
Context menu
https://jamesfengcao.gitlab.io/uweb/en/longclick/
@@ -62,14 +76,14 @@
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
Fri, 01 Dec 2023 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
- <p>Click the following links to install menus for long pressing the button "link":<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file "default.select" defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
+ <p>Click the following links to install menus for long pressing the button <code>link</code>:<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file <code>default.select</code> defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
-
Links
https://jamesfengcao.gitlab.io/uweb/en/links/
Sat, 28 Oct 2023 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/links/
- <h4 id="context-menu">Context menu</h4>
<p>The configuration file "image.link", "download.link" and "context.link" define the default "command" submenu of the context menus when a url link is long pressed.</p>
<h5 id="context-menu-for-images">Context menu for images</h5>
<p>Click the following links to install "command" submenu for image's context menu:<br>
<a href="i:0gimage.link::google:https://www.google.com/searchbyimage?image_url=%25u0A">google image</a></p>
<p><a href="i:0gimage.link::tineye:https://tineye.com/search?url=%25u0A">tineye</a></p>
<p><a href="i:0gimage.link::yandex:https://yandex.com/images/search?family=yes&rpt=imageview&url=%25u0A">yandex image</a></p>
<h5 id="download-options-menu---command">Download options menu -> "command"</h5>
<p>Click the following links to install "command" submenu for <b>download options menu</b>:<br>
<a href="i:0gdownload.link::pager:i:0m/js/view.html:%25u#p=1%0A">huge txt pager</a></p>
<p><a href="i:0gdownload.link::pager_2lnk:i:0m/js/view.html#/js/2lnk.js:%25u#p=1%0A">pager with urls converted to links</a></p>
+ <h4 id="context-menu">Context menu</h4>
<p>The configuration file <code>image.link</code>, <code>download.link</code> and <code>context.link</code> define the default <code>command</code> submenu of the context menus when a url link is long pressed.</p>
<h5 id="context-menu-for-images">Context menu for images</h5>
<p>Click the following links to install <code>command</code> submenu for image's context menu:<br>
<a href="i:0gimage.link::google:https://www.google.com/searchbyimage?image_url=%25u0A">google image</a></p>
<p><a href="i:0gimage.link::tineye:https://tineye.com/search?url=%25u0A">tineye</a></p>
<p><a href="i:0gimage.link::yandex:https://yandex.com/images/search?family=yes&rpt=imageview&url=%25u0A">yandex image</a></p>
<h5 id="download-options-menu---command">Download options menu -> <code>command</code></h5>
<p>Click the following links to install <code>command</code> submenu for <b>download options menu</b>:<br>
<a href="i:0gdownload.link::pager:i:0m/js/view.html:%25u#p=1%0A">huge txt pager</a></p>
<p><a href="i:0gdownload.link::pager_2lnk:i:0m/js/view.html#/js/2lnk.js:%25u#p=1%0A">pager with urls converted to links</a></p>
-
Cron
@@ -162,13 +176,6 @@
https://jamesfengcao.gitlab.io/uweb/en/bookmarklet/
<p>With <a href="../index.html#">uweb browser</a>, long pressing any bookmarklet link, click "Open in new tab", the bookmarklet will be run on the last other tab.</p>
<p><a href="javascript:{let es=document.getElementsByTagName('script');let urls='';for(let i=0;i<es.length;i++){if(es[i].src)urls+=es[i].src+'<br>';}let w=window.open(''),s=w.document;s.write(urls);s.close();w.location.href='i:631:';}">List all script urls</a></p>
<p><a target="_self" href="javascript:alert(navigator.userAgent)">User agent</a><br>
<a href="javascript:(function(){var w=window.open(''),s=w.document;s.write('<html><body></body></html>');s.close();var pre=s.body.appendChild(s.createElement('pre'));pre.style.overflow='auto';pre.style.whiteSpace='pre-wrap';pre.appendChild(s.createTextNode(document.cookie))})()">Cookie</a><br>
<a href="javascript:(function(){var w=window.open(''),s=w.document;s.write('<html><body></body></html>');s.close();var pre=s.body.appendChild(s.createElement('pre'));pre.style.overflow='auto';pre.style.whiteSpace='pre-wrap';pre.appendChild(s.createTextNode(document.documentElement.innerHTML))})()">Source code</a><br>
<a href="javascript:function%20gett(w){try{var%20lm=new%20Date(w.document.lastModified);if(lm>maxd)maxd=lm;for(var%20i=0;F=w.frames[i];i++){gett(F);}}catch(e){}}var%20now=new%20Date();var%20maxd=new%20Date(document.lastModified);gett(window);if(maxd.getTime()==0||now.toUTCString()==maxd.toUTCString()){alert('Page%20is%20dynamically%20generated,%20cannot%20determine%20date.');}else{alert('Page%20was%20last%20modified%20'+maxd.toLocaleString());}" class="bookmarklet" rel="nofollow">Last modified date</a></p>
<p><a href="javascript:(function(){var script=document.createElement('script');script.src='//fastly.jsdelivr.net/npm/eruda';document.body.appendChild(script);script.onload=function(){eruda.init()}})()">Eruda: mobile console</a><br>
<a href="javascript:window.open('https://api.qrserver.com/v1/create-qr-code/?size=150x150&data='%20+%20decodeURIComponent(location.href));void(0);">QR code generation</a></p>
<p><a href="javascript:(function(){var x,i; x = document.forms; for (i = 0; i < x.length; ++i) x[i].method="get"; alert("Changed " + x.length + " forms to use the GET method. After submitting a form from this page, you should be able to bookmark the result."); })();">Use "GET" method for "POST"</a><br>
<a href="javascript:(function(){var i,f,j,e,div,label,ne; for(i=0;f=document.forms[i];++i)for(j=0;e=f[j];++j)if(e.type=="hidden"){ D=document; function C(t){return D.createElement(t);} function A(a,b){a.appendChild(b);} div=C("div"); label=C("label"); A(div, label); A(label, D.createTextNode(e.name + ": ")); e.parentNode.insertBefore(div, e); e.parentNode.removeChild(e); ne=C("input");/*for ie*/ ne.type="text"; ne.value=e.value; A(label, ne); --j;}})()">Shows all form elements</a><br>
<a href="javascript:(function(){var x,k,f,j;x=document.forms;for (k=0;k<x.length;++k){f=x[k];for(j=0;j<f.length;++j){f[j].disabled=false; f[j].readOnly=false;}}})()">Enables all form elements</a></p>
- -
-
Url services
- https://jamesfengcao.gitlab.io/uweb/en/urls/
- Fri, 10 Jun 2022 00:00:00 +0000
- https://jamesfengcao.gitlab.io/uweb/en/urls/
- <p>Click the following links to install url services with <a href="../index.html#">uweb browser</a> or <a href="../ebrowserreadme/index.html#">ebrowser</a>. <b>Force exit and re-launch the app</b>, then long press the "image" button to popup the menu.</p>
<p><a href="i:01Fullscreen video:i:5f">Fullscreen video:i:5f</a></p>
<p><a href="i:01Redirect/edit:e:">Redirect/edit:e:</a></p>
<p><a href="i:01Save2autocomplete:i:51:">Save2autocomplete:i:51:</a></p>
<p><a href="i:01Bookmark:i:52:">Bookmark:i:52:</a></p>
<p><a href="i:01Note:i:53:">Note:i:53:</a></p>
<p><a href="i:01Save engine:i:54:">Save engine:i:54:</a></p>
<p><a href="i:01Save link:i:55:">Save link:i:55:</a></p>
<p><a href="i:01Save to desktop:i:58">Save to desktop:i:58</a></p>
<p><a href="i:01markdownview:i:0m-/js/mdview.html:">markdownview:i:0m-/js/mdview.html:</a></p>
<p><a href="i:01Add to media storage::001">Add to media storage::001</a></p>
<p><a href="i:01Extract web app:i:0bsitecache/local/:">Extract web app:i:0bsitecache/local/:</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=">tgurl:https://tx.me/share/url?url=</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../download ">tgdownload:https://tx.me/share/url?url=../download </a></p>
<p><a href="i:01Compatible mode:i:5d">Compatible mode:i:5d</a></p>
<p><a href="i:01papago:https://papago.naver.net/website?locale=en&target=en&url=">papago:https://papago.naver.net/website?locale=en&target=en&url=</a></p>
<p><a href="i:01google translate:https://translate.google.com/translate?sl=auto&tl=en&u=">google translate:https://translate.google.com/translate?sl=auto&tl=en&u=</a></p>
<p><a href="i:01Source:view-source:">Source:view-source:</a></p>
<p><a href="i:01outline:https://www.outline.com/">outline:https://www.outline.com/</a></p>
-
-
Commands
https://jamesfengcao.gitlab.io/uweb/en/cmds/
@@ -237,7 +244,7 @@
https://jamesfengcao.gitlab.io/uweb/en/ebrowserreadme/
Mon, 01 Jan 0001 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/ebrowserreadme/
- <script>function notRepo(){let u=location.href.replace(/#$/, '');return u.endsWith('index.html')||u.endsWith('readme/');}</script>
<!--%3cmeta http-equiv=refresh content=%220;url=%68ttps://gitee.com/jamesfengcao/uweb/raw/master/redirect.html#%22%3e-->
<h1 id="ebrowser-keyboard-friendly-minimal-suckless-web-browser"><a href="https://github.com/torappinfo/ebrowser">Ebrowser</a>: keyboard-friendly minimal suckless web browser</h1>
<p>Ebrowser is designed with the philosophy of <a href="https://github.com/torappinfo/uweb">Android uweb browser</a> (<a href="https://gitlab.com/jamesfengcao/uweb">gitlab</a>).</p>
<ul>
<li>lightweight (less than 20k bytes) without bundled electron.</li>
<li>much less memory footprint than edge/chrome browser and highly performant.</li>
<li>keyboard friendly with vim-style keymaps and command line support in address bar.</li>
<li><a href="https://uweb.surge.sh/en/redirect/index.html#" onclick="if(notRepo()){location='../redirect/index.html#';return false;}">global redirection</a> to bypass censorship.</li>
<li>user CSS/JS at will. Ex. pressing "md" in no-focus mode to preview markdown file.</li>
<li>global CSS/JS for all sites at will.</li>
<li>CSS/JS for domains, similar to <a href="https://jamesfengcao.gitlab.io/uweb/en/sitejs/index.html">uweb</a>, but use sitejs/[domain].js or sitecss/[domain].css, not [domain root].js/css.</li>
<li>customizable.</li>
<li>dark theme support.</li>
</ul>
<p>Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight.</p>
+ <script>function notRepo(){let u=location.href.replace(/#$/, '');return u.endsWith('index.html')||u.endsWith('readme/');}</script>
<!--%3cmeta http-equiv=refresh content=%220;url=%68ttps://gitee.com/jamesfengcao/uweb/raw/master/redirect.html#%22%3e-->
<h1 id="ebrowser-keyboard-friendly-minimal-suckless-web-browser"><a href="https://github.com/torappinfo/ebrowser">Ebrowser</a>: keyboard-friendly minimal suckless web browser</h1>
<p>Ebrowser is designed with the philosophy of <a href="https://github.com/torappinfo/uweb">Android uweb browser</a> (<a href="https://gitlab.com/jamesfengcao/uweb">gitlab</a>).</p>
<ul>
<li>lightweight (less than 20k bytes) without bundled electron.</li>
<li>much less memory footprint than edge/chrome browser and highly performant.</li>
<li>keyboard friendly with vim-style keymaps and command line support in address bar.</li>
<li><a href="https://uweb.surge.sh/en/redirect/index.html#" onclick="if(notRepo()){location='../redirect/index.html#';return false;}">global redirection</a> to bypass censorship.</li>
<li>user CSS/JS at will. Ex. pressing <code>md</code> in no-focus mode to preview markdown file.</li>
<li>global CSS/JS for all sites at will.</li>
<li>CSS/JS for domains, similar to <a href="https://jamesfengcao.gitlab.io/uweb/en/sitejs/index.html">uweb</a>, but use sitejs/[domain].js or sitecss/[domain].css, not [domain root].js/css.</li>
<li>customizable.</li>
<li>dark theme support.</li>
</ul>
<blockquote>
<p>Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight.</p>
-
diff --git a/en/links/index.html b/en/links/index.html
index d1535d5a..b855f4d3 100644
--- a/en/links/index.html
+++ b/en/links/index.html
@@ -49,14 +49,14 @@
Context menu
-The configuration file "image.link", "download.link" and "context.link" define the default "command" submenu of the context menus when a url link is long pressed.
+The configuration file image.link, download.link and context.link define the default command submenu of the context menus when a url link is long pressed.
Context menu for images
-Click the following links to install "command" submenu for image's context menu:
+
Click the following links to install command submenu for image's context menu:
google image
-Download options menu -> "command"
-Click the following links to install "command" submenu for download options menu:
+
Download options menu -> command
+Click the following links to install command submenu for download options menu:
huge txt pager
pager with urls converted to links
@@ -79,7 +79,7 @@
Links
-Long pressing the bookmark button in uweb browser will popup menus defined in file "default.link". The file format is as follows:
+
Long pressing the bookmark button in uweb browser will popup menus defined in file default.link. The file format is as follows:
[Menu name]:[one or more links delimited by " \n "]
and each link has the following format:
[url][space][javascript code]
@@ -340,8 +340,8 @@ Bundle of internal urls, if it is an "i:0" url, then it should have th
-Last Modified: 22 August 2025
-cleanup cloud storage search engines
+
Last Modified: 8 December 2025
+use ` for terms
i:56 urls support CTRL_A to CTRL-Z
diff --git a/en/sitemap.xml b/en/sitemap.xml
index 7dc669e6..92f94e21 100644
--- a/en/sitemap.xml
+++ b/en/sitemap.xml
@@ -2,8 +2,47 @@
+ https://jamesfengcao.gitlab.io/uweb/en/topposts/
+ 2025-12-30T23:10:52+08:00
+
+
+
+ https://jamesfengcao.gitlab.io/uweb/en/urls/
+ 2025-12-30T23:10:52+08:00
+
+
+
+ https://jamesfengcao.gitlab.io/uweb/en/
+ 2025-12-30T23:10:52+08:00
+
+
+
https://jamesfengcao.gitlab.io/uweb/en/_posts/
- 2025-12-05T19:03:32+08:00
+ 2025-12-08T08:53:33+08:00
+
+ https://jamesfengcao.gitlab.io/uweb/en/filemanager/
+ 2025-12-05T21:06:12+08:00
+
+
+
+ https://jamesfengcao.gitlab.io/uweb/en/tips/
+ 2025-12-05T21:09:32+08:00
+
+
https://jamesfengcao.gitlab.io/uweb/en/input/
2025-11-13T18:49:05+08:00
@@ -27,32 +92,6 @@
hreflang="en"
href="https://jamesfengcao.gitlab.io/uweb/en/input/"
/>
-
- https://jamesfengcao.gitlab.io/uweb/en/
- 2025-12-05T19:03:32+08:00
-
-
-
- https://jamesfengcao.gitlab.io/uweb/en/tips/
- 2025-12-05T19:03:32+08:00
-
-
https://jamesfengcao.gitlab.io/uweb/en/longclick/
2025-10-13T20:43:24+08:00
@@ -81,7 +120,7 @@
/>
https://jamesfengcao.gitlab.io/uweb/en/tags/
- 2025-11-06T19:14:30+08:00
+ 2025-12-08T08:53:33+08:00
-
- https://jamesfengcao.gitlab.io/uweb/en/topposts/
- 2025-12-05T07:43:12+08:00
-
-
https://jamesfengcao.gitlab.io/uweb/en/globalcss/
2024-10-13T16:43:18+08:00
@@ -152,10 +178,10 @@
2024-07-12T10:48:12+08:00
https://jamesfengcao.gitlab.io/uweb/en/tags/clipboard/
- 2025-11-06T19:14:30+08:00
+ 2025-12-08T08:53:33+08:00
https://jamesfengcao.gitlab.io/uweb/en/tags/ssh/
- 2025-11-06T19:14:30+08:00
+ 2025-12-08T08:53:33+08:00
https://jamesfengcao.gitlab.io/uweb/en/tags/termux/
- 2025-11-06T19:14:30+08:00
+ 2025-12-08T08:53:33+08:00
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
- 2025-11-06T19:14:30+08:00
+ 2025-12-08T08:53:33+08:00
https://jamesfengcao.gitlab.io/uweb/en/tags/windows/
- 2025-11-06T19:14:30+08:00
+ 2025-12-08T08:53:33+08:00
https://jamesfengcao.gitlab.io/uweb/en/links/
- 2025-08-22T08:32:50+08:00
+ 2025-12-08T08:49:39+08:00
-
- https://jamesfengcao.gitlab.io/uweb/en/urls/
- 2025-04-08T23:19:03+08:00
-
-
https://jamesfengcao.gitlab.io/uweb/en/cmds/
2025-03-30T10:33:26+08:00
@@ -540,7 +553,7 @@
/>
https://jamesfengcao.gitlab.io/uweb/en/ebrowserreadme/
- 2025-11-12T20:15:41+08:00
+ 2025-12-08T08:44:26+08:00
https://jamesfengcao.gitlab.io/uweb/en/mirrors/
2025-11-12T18:13:17+08:00
@@ -571,7 +584,7 @@
/>
https://jamesfengcao.gitlab.io/uweb/en/unlist/
- 2025-11-12T20:15:41+08:00
+ 2025-12-08T08:44:26+08:00
Recent content in Clipboard on uweb browser: unlimited power
Hugo
en
- Thu, 06 Nov 2025 19:14:30 +0800
+ Mon, 08 Dec 2025 08:53:33 +0800
-
Text selection/processing
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
Fri, 01 Dec 2023 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
- <p>Click the following links to install menus for long pressing the button "link":<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file "default.select" defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
+ <p>Click the following links to install menus for long pressing the button <code>link</code>:<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file <code>default.select</code> defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
diff --git a/en/tags/index.xml b/en/tags/index.xml
index bd21fff3..cbb33c04 100644
--- a/en/tags/index.xml
+++ b/en/tags/index.xml
@@ -6,7 +6,7 @@
Recent content in Tags on uweb browser: unlimited power
Hugo
en
- Thu, 06 Nov 2025 19:14:30 +0800
+ Mon, 08 Dec 2025 08:53:33 +0800
-
Javascript
diff --git a/en/tags/ssh/index.xml b/en/tags/ssh/index.xml
index b713c894..a626123d 100644
--- a/en/tags/ssh/index.xml
+++ b/en/tags/ssh/index.xml
@@ -6,14 +6,14 @@
Recent content in Ssh on uweb browser: unlimited power
Hugo
en
- Thu, 06 Nov 2025 19:14:30 +0800
+ Mon, 08 Dec 2025 08:53:33 +0800
-
Text selection/processing
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
Fri, 01 Dec 2023 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
- <p>Click the following links to install menus for long pressing the button "link":<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file "default.select" defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
+ <p>Click the following links to install menus for long pressing the button <code>link</code>:<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file <code>default.select</code> defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
diff --git a/en/tags/termux/index.xml b/en/tags/termux/index.xml
index 392f9af5..63ba07eb 100644
--- a/en/tags/termux/index.xml
+++ b/en/tags/termux/index.xml
@@ -6,14 +6,14 @@
Recent content in Termux on uweb browser: unlimited power
Hugo
en
- Thu, 06 Nov 2025 19:14:30 +0800
+ Mon, 08 Dec 2025 08:53:33 +0800
-
Text selection/processing
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
Fri, 01 Dec 2023 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
- <p>Click the following links to install menus for long pressing the button "link":<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file "default.select" defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
+ <p>Click the following links to install menus for long pressing the button <code>link</code>:<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file <code>default.select</code> defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
-
Tools
diff --git a/en/tags/windows/index.xml b/en/tags/windows/index.xml
index ffb010c5..2758f0a5 100644
--- a/en/tags/windows/index.xml
+++ b/en/tags/windows/index.xml
@@ -6,14 +6,14 @@
Recent content in Windows on uweb browser: unlimited power
Hugo
en
- Thu, 06 Nov 2025 19:14:30 +0800
+ Mon, 08 Dec 2025 08:53:33 +0800
-
Text selection/processing
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
Fri, 01 Dec 2023 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/textprocess/
- <p>Click the following links to install menus for long pressing the button "link":<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file "default.select" defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
+ <p>Click the following links to install menus for long pressing the button <code>link</code>:<br>
<a href="i:0gdefault.select::Share:/uwebS:%0A">Share</a></p>
<p><a href="i:0gdefault.select::Edit:/text/html:echo -n %22%3cmeta charset=utf-8%3e%3cbody contenteditable%3e%22;cat%0A">Edit</a></p>
<p><a href="i:0gdefault.select::AddrBar:/uwebAddr:%0A">Copy text to address bar</a></p>
<p><a href="i:0gdefault.select::notems:/uwebA:printf i:0/js/hash2textarea.js:https://note.ms/ric#;cat%0A">note.ms: cloud text sharing, please replace "ric" with your favorite ID</a></p>
<p><a href="i:0gdefault.select::copyHtml:html/clip:%0A">Copy selected text with html format to clipboard</a></p>
<p><a href="i:0gdefault.select::Home:/uweb:printf file://data/data/info.torapp.uweb/files/home5.search%5C location.href=%5C%22i:15;cat;printf %5C%22%0A">Search with home screen</a></p>
<p><a href="i:0gdefault.select::google Translate:/uweb:printf 'https://translate.google.com/?sl=auto&tl=en&op=translate&text=';cat|tr ' ' '%2B'%0A">google Translate</a></p>
<p><a href="i:0gdefault.select::bing Translate:/uweb:printf 'https://cn.bing.com/translator/?from=&to=en&text=';cat|tr ' ' '%2B'%0A">bing translate</a></p>
<p><a href="i:0gdefault.select::deepL:/uweb:printf https://www.deepl.com/translator-mobile#auto/en/;cat|sed 's/ /%2520/g'%0A">deepL</a></p>
<p>The file <code>default.select</code> defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:<br>
[Name]:[mimetype]:[command line]</p>
diff --git a/en/textprocess/index.html b/en/textprocess/index.html
index 945a34a3..94bcd87d 100644
--- a/en/textprocess/index.html
+++ b/en/textprocess/index.html
@@ -56,7 +56,7 @@
windows
- Click the following links to install menus for long pressing the button "link":
+
Click the following links to install menus for long pressing the button link:
Share
@@ -66,7 +66,7 @@
-The file "default.select" defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:
+
The file default.select defines text processing menus for selected text. If no text is selected, the menu item operates on the whole page. Each line of the file has the following format:
[Name]:[mimetype]:[command line]
[mimetype] specifies input/output for [command line].
It formats as "[input mimetype]/[output mimetype]".
@@ -97,8 +97,8 @@ To use ssh or scp, users need to install uweb compatible Termux provided on the
PCs need command "xsel" available to operate on copy/paste.
-Last Modified: 6 November 2025
-rewording
+
Last Modified: 8 December 2025
+use ` for terms
diff --git a/en/tips/index.html b/en/tips/index.html
index ce7efbdd..d8ab1a94 100644
--- a/en/tips/index.html
+++ b/en/tips/index.html
@@ -63,17 +63,12 @@ home5.html, home6.mht(or .search or .html), home7.mht(or .search or .html), ...
If the current page is not the internal file manager, visiting the configuration files with extensions such as .autoc, .links etc. applies them. Since clicking the file name in the internal file manager shows the content of the file instead, you can either bookmark it, or "open in new tab" to apply it.
Click download button on the bottom toolbar to save remote webpage
The resulted offline file can be used as one of the home screens.
-Configuration folder and file managers
-With bookmark, configuration folders can be symbolic linked to other public folders or managed by 3rd party file managers via termux.
-Internal file manager
-Visiting file urls ending with "/" enters internal file manager, you can run any command with address bar with the format "d::command line:" to execute "command line" in the current folder of the internal file manager. For examples:
-"d::touch a.txt:" to create a new file a.txt.
-"d::mkdir subdir:" to create a new folder names "subdir".
-"d::mv old new:" to rename the file "old" to be "new".
+Configuration folder and file manager
+With bookmark, configuration folders can be symbolic linked to other public folders or managed by 3rd party file managers via termux.
Last Modified: 5 December 2025
-add documents to run shell command on address bar
+add filemanager.md
diff --git a/en/topposts/index.xml b/en/topposts/index.xml
index 850d72ba..c44399d0 100644
--- a/en/topposts/index.xml
+++ b/en/topposts/index.xml
@@ -6,8 +6,15 @@
Recent content in Topposts on uweb browser: unlimited power
Hugo
en
- Fri, 05 Dec 2025 07:43:12 +0800
+ Tue, 30 Dec 2025 23:10:52 +0800
+ -
+
Url services
+ https://jamesfengcao.gitlab.io/uweb/en/urls/
+ Tue, 30 Dec 2025 00:00:00 +0000
+ https://jamesfengcao.gitlab.io/uweb/en/urls/
+ <p>With uweb version 1144+, urls in configure file <code>default.urls</code> now support <a href="../cmds/index.html#">"%u","%t" etc.</a>. For lower versions, please remove the ending "%u" in each line.</p>
<p>Click the following links to install url services with <a href="../index.html#">uweb browser</a> or <a href="../ebrowserreadme/index.html#">ebrowser</a>. <b>Force exit and re-launch the app</b>, then long press the "image" button to popup the menu.</p>
<p><a href="i:01Fullscreen video:i:5f%25u">Fullscreen video:i:5f%u</a></p>
<p><a href="i:01Redirect/edit:e:%25u">Redirect/edit:e:%u</a></p>
<p><a href="i:01Save2autocomplete:i:51:%25u">Save2autocomplete:i:51:%u</a></p>
<p><a href="i:01Bookmark:i:52:%25u">Bookmark:i:52:%u</a></p>
<p><a href="i:01Note:i:53:%25u">Note:i:53:%u</a></p>
<p><a href="i:01Save engine:i:54:%25u">Save engine:i:54:%u</a></p>
<p><a href="i:01Save link:i:55:%25u">Save link:i:55:%u</a></p>
<p><a href="i:01Save to desktop:i:58%25u">Save to desktop:i:58%u</a></p>
<p><a href="i:01markdownview:i:0m-/js/mdview.html:%25u">markdownview:i:0m-/js/mdview.html:%u</a></p>
<p><a href="i:01Reader:i:0/js/reader.html:%25u">Reader:i:0/js/reader.html:%u</a></p>
+
-
Search engine query URLs
https://jamesfengcao.gitlab.io/uweb/en/search/
@@ -29,13 +36,6 @@
https://jamesfengcao.gitlab.io/uweb/en/sitemap/
<p><a href="../mirrors/index.html#">Mirrors</a><br>
<a href="i:61ver:../../latest.html#">Check for updates</a></p>
<h4 id="ui">UI</h4>
<ul>
<li><a href="../search/index.html#">Search engines</a></li>
<li><a href="../searchurl/homescreen.html#">Home screens</a></li>
<li><a href="i:61:../searchurl/func.html">UI</a> (<a href="i:61:https://gitee.com/jamesfengcao/uweb/raw/master/en/searchurl/func.html">gitee</a>)</li>
<li><a href="../searchurl/webdav.html#">webdav install-able menu generator</a></li>
</ul>
<h4 id="customization">Customization</h4>
<ul>
<li>Long pressing menus for toolbar buttons</li>
<li>User agents: default.uas</li>
<li><a href="../rjs/index.html#">Javascript</a></li>
<li><a href="../urls/index.html#">Url services</a></li>
<li><a href="../links/index.html#">Links</a></li>
<li><a href="../cmds/index.html#">Commands</a></li>
<li><a href="../rjs/index.html#">Remote javascript</a></li>
<li><a href="../textprocess/index.html#">Menu for selections</a></li>
<li><a href="../longclick/index.html#">Menu for long pressing hypertext</a></li>
<li><a href="../icons/index.html#">Toolbar</a></li>
<li><a href="../gesture/index.html#">Gestures</a></li>
<li><a href="../acmd/index.html#">Address bar command modes</a></li>
<li><a href="i:60config.html:../searchurl/config.html">Advanced</a></li>
</ul>
<h4 id="advanced">Advanced</h4>
<h5 id="content">Content</h5>
<ul>
<li><a href="../adblock/index.html#">AD blocking</a></li>
<li><a href="../globalcss/index.html#">CSS styles</a></li>
<li><a href="../redirect/index.html#">Redirection</a></li>
<li><a href="../offlinecache/index.html#">Offline cache</a></li>
<li><a href="../sitejs/index.html#">JS/CSS/HTML/preprocessing for domains</a></li>
<li><a href="../url2site/index.html#">Any urls as website</a></li>
</ul>
<h5 id="tools">Tools</h5>
<ul>
<li><a href="../bookmarklet/index.html#">Bookmarklets</a></li>
<li><a href="../tcron/index.html#">Cron & more</a></li>
<li><a href="../filecap/index.html#">Custom file handling</a></li>
<li><a href="../html5/index.html#">Html5 application</a></li>
<li><a href="../termux/index.html#">Termux</a></li>
</ul>
<h5 id="info">Info</h5>
<ul>
<li><a href="../../assets/help_en.html#">Manual</a></li>
<li><a href="../tips/index.html#">Tips</a></li>
<li><a href="../filenames/index.html#">Configuration files</a></li>
<li><a href="../bookmark/index.html#">Bookmarks</a></li>
</ul>
- -
-
Url services
- https://jamesfengcao.gitlab.io/uweb/en/urls/
- Fri, 10 Jun 2022 00:00:00 +0000
- https://jamesfengcao.gitlab.io/uweb/en/urls/
- <p>Click the following links to install url services with <a href="../index.html#">uweb browser</a> or <a href="../ebrowserreadme/index.html#">ebrowser</a>. <b>Force exit and re-launch the app</b>, then long press the "image" button to popup the menu.</p>
<p><a href="i:01Fullscreen video:i:5f">Fullscreen video:i:5f</a></p>
<p><a href="i:01Redirect/edit:e:">Redirect/edit:e:</a></p>
<p><a href="i:01Save2autocomplete:i:51:">Save2autocomplete:i:51:</a></p>
<p><a href="i:01Bookmark:i:52:">Bookmark:i:52:</a></p>
<p><a href="i:01Note:i:53:">Note:i:53:</a></p>
<p><a href="i:01Save engine:i:54:">Save engine:i:54:</a></p>
<p><a href="i:01Save link:i:55:">Save link:i:55:</a></p>
<p><a href="i:01Save to desktop:i:58">Save to desktop:i:58</a></p>
<p><a href="i:01markdownview:i:0m-/js/mdview.html:">markdownview:i:0m-/js/mdview.html:</a></p>
<p><a href="i:01Add to media storage::001">Add to media storage::001</a></p>
<p><a href="i:01Extract web app:i:0bsitecache/local/:">Extract web app:i:0bsitecache/local/:</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=">tgurl:https://tx.me/share/url?url=</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../../download ">tgdownload:https://tx.me/share/url?url=../../download </a></p>
<p><a href="i:01Compatible mode:i:5d">Compatible mode:i:5d</a></p>
<p><a href="i:01papago:https://papago.naver.net/website?locale=en&target=en&url=">papago:https://papago.naver.net/website?locale=en&target=en&url=</a></p>
<p><a href="i:01google translate:https://translate.google.com/translate?sl=auto&tl=en&u=">google translate:https://translate.google.com/translate?sl=auto&tl=en&u=</a></p>
<p><a href="i:01Source:view-source:">Source:view-source:</a></p>
<p><a href="i:01outline:https://www.outline.com/">outline:https://www.outline.com/</a></p>
-
-
Commands
https://jamesfengcao.gitlab.io/uweb/en/cmds/
diff --git a/en/unlist/index.xml b/en/unlist/index.xml
index 67736993..d5221256 100644
--- a/en/unlist/index.xml
+++ b/en/unlist/index.xml
@@ -12,7 +12,7 @@
https://jamesfengcao.gitlab.io/uweb/en/ebrowserreadme/
Mon, 01 Jan 0001 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/ebrowserreadme/
- <script>function notRepo(){let u=location.href.replace(/#$/, '');return u.endsWith('index.html')||u.endsWith('readme/');}</script>
<!--%3cmeta http-equiv=refresh content=%220;url=%68ttps://gitee.com/jamesfengcao/uweb/raw/master/redirect.html#%22%3e-->
<h1 id="ebrowser-keyboard-friendly-minimal-suckless-web-browser"><a href="https://github.com/torappinfo/ebrowser">Ebrowser</a>: keyboard-friendly minimal suckless web browser</h1>
<p>Ebrowser is designed with the philosophy of <a href="https://github.com/torappinfo/uweb">Android uweb browser</a> (<a href="https://gitlab.com/jamesfengcao/uweb">gitlab</a>).</p>
<ul>
<li>lightweight (less than 20k bytes) without bundled electron.</li>
<li>much less memory footprint than edge/chrome browser and highly performant.</li>
<li>keyboard friendly with vim-style keymaps and command line support in address bar.</li>
<li><a href="https://uweb.surge.sh/en/redirect/index.html#" onclick="if(notRepo()){location='../redirect/index.html#';return false;}">global redirection</a> to bypass censorship.</li>
<li>user CSS/JS at will. Ex. pressing "md" in no-focus mode to preview markdown file.</li>
<li>global CSS/JS for all sites at will.</li>
<li>CSS/JS for domains, similar to <a href="https://jamesfengcao.gitlab.io/uweb/en/sitejs/index.html">uweb</a>, but use sitejs/[domain].js or sitecss/[domain].css, not [domain root].js/css.</li>
<li>customizable.</li>
<li>dark theme support.</li>
</ul>
<p>Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight.</p>
+ <script>function notRepo(){let u=location.href.replace(/#$/, '');return u.endsWith('index.html')||u.endsWith('readme/');}</script>
<!--%3cmeta http-equiv=refresh content=%220;url=%68ttps://gitee.com/jamesfengcao/uweb/raw/master/redirect.html#%22%3e-->
<h1 id="ebrowser-keyboard-friendly-minimal-suckless-web-browser"><a href="https://github.com/torappinfo/ebrowser">Ebrowser</a>: keyboard-friendly minimal suckless web browser</h1>
<p>Ebrowser is designed with the philosophy of <a href="https://github.com/torappinfo/uweb">Android uweb browser</a> (<a href="https://gitlab.com/jamesfengcao/uweb">gitlab</a>).</p>
<ul>
<li>lightweight (less than 20k bytes) without bundled electron.</li>
<li>much less memory footprint than edge/chrome browser and highly performant.</li>
<li>keyboard friendly with vim-style keymaps and command line support in address bar.</li>
<li><a href="https://uweb.surge.sh/en/redirect/index.html#" onclick="if(notRepo()){location='../redirect/index.html#';return false;}">global redirection</a> to bypass censorship.</li>
<li>user CSS/JS at will. Ex. pressing <code>md</code> in no-focus mode to preview markdown file.</li>
<li>global CSS/JS for all sites at will.</li>
<li>CSS/JS for domains, similar to <a href="https://jamesfengcao.gitlab.io/uweb/en/sitejs/index.html">uweb</a>, but use sitejs/[domain].js or sitecss/[domain].css, not [domain root].js/css.</li>
<li>customizable.</li>
<li>dark theme support.</li>
</ul>
<blockquote>
<p>Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight.</p>
-
diff --git a/en/urls/index.html b/en/urls/index.html
index c5452dbd..fa9d43c0 100644
--- a/en/urls/index.html
+++ b/en/urls/index.html
@@ -48,61 +48,63 @@
- 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.
-
-
-
-
-
-
-
-
-markdownview:i:0m-/js/mdview.html:
-
-Extract web app:i:0bsitecache/local/:
-tgurl:https://tx.me/share/url?url=
-tgdownload:https://tx.me/share/url?url=../../download
-
-papago:https://papago.naver.net/website?locale=en&target=en&url=
-google translate:https://translate.google.com/translate?sl=auto&tl=en&u=
-
-outline:https://www.outline.com/
-2pdf:https://www.web2pdfconvert.com#
-printfriendly:https://www.printfriendly.com/print/?url=
-htmlview:https://htmlview.glitch.me/?
-htmlpreview:https://htmlpreview.github.io/?
-webarchive:https://web.archive.org/web/*/
-archive:https://archive.is/?run=1&url=
-googlecache:http://webcache.googleusercontent.com/search?q=cache:
-Add to Feedly:https://feedly.com/i/subscription/feed/
-Site analyzer:https://www.similarweb.com/website/
-Site buildwith:https://builtwith.com/?
-instapaper:https://www.instapaper.com/text?u=
-google docs:http://docs.google.com/gview?embedded=true&url=
+ With uweb version 1144+, urls in configure file default.urls now support "%u","%t" etc.. For lower versions, please remove the ending "%u" in each line.
+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.
+
+
+
+
+
+
+
+
+markdownview:i:0m-/js/mdview.html:%u
+
+
+Extract web app:i:0bsitecache/local/:%u
+tgurl:https://tx.me/share/url?url=%u
+tgdownload:https://tx.me/share/url?url=../../download %u
+
+papago:https://papago.naver.net/website?locale=en&target=en&url=%u
+google translate:https://translate.google.com/translate?sl=auto&tl=en&u=%u
+
+outline:https://www.outline.com/%u
+2pdf:https://www.web2pdfconvert.com#%u
+printfriendly:https://www.printfriendly.com/print/?url=%u
+htmlview:https://htmlview.glitch.me/?%u
+htmlpreview:https://htmlpreview.github.io/?%u
+webarchive:https://web.archive.org/web/*/%u
+archive:https://archive.is/?run=1&url=%u
+googlecache:http://webcache.googleusercontent.com/search?q=cache:%u
+Add to Feedly:https://feedly.com/i/subscription/feed/%u
+Site analyzer:https://www.similarweb.com/website/%u
+Site buildwith:https://builtwith.com/?%u
+instapaper:https://www.instapaper.com/text?u=%u
+google docs:http://docs.google.com/gview?embedded=true&url=%u
in which "redirect" needs default.redirect.
The following is mostly useful to send msg to TV (TV side needs to execute "wait for msg" first):
-
-
-Send url(bookmark):i:5ji:52../home5:
-
-
-Send url(bookmark fullscreen):i:5ji:52../home5:i:5f
-Send url(site fullscreen):i:5ji:0mi:5f:
-
-Send url(bookmark site fullscreen):i:5ji:52../home5:i:0mi:5f:
+
+
+Send url(bookmark):i:5ji:52../home5:%u
+Send url(clipboard):i:5ji:5b%u
+Send url(fullscreen):i:5ji:5f%u
+Send url(bookmark fullscreen):i:5ji:52../home5:i:5f%u
+Send url(site fullscreen):i:5ji:0mi:5f:%u
+Send url(video):i:5ji:0mc16:%u
+Send url(bookmark site fullscreen):i:5ji:52../home5:i:0mi:5f:%u
The following needs corresponding html5 application to be installed:
-txtview:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=
-md+katex:file:///data/user/0/info.torapp.uweb/files/app/mdkatex.html?url=
-markdeep:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=
-plyr:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=
-dplayer:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=
-pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=
-epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=
-djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=
+txtview:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u
+md+katex:file:///data/user/0/info.torapp.uweb/files/app/mdkatex.html?url=%u
+markdeep:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u
+plyr:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u
+dplayer:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u
+pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=%u
+epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=%u
+djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=%u
-Last Modified: 8 April 2025
-fix broken links
+
Last Modified: 30 December 2025
+urls.py to support enhanced default.urls
diff --git a/misc/ebrowser/README.md b/misc/ebrowser/README.md
index 31b9eb13..6a76932d 100644
--- a/misc/ebrowser/README.md
+++ b/misc/ebrowser/README.md
@@ -6,13 +6,13 @@ Ebrowser is designed with the philosophy of [Android uweb browser](https://githu
- much less memory footprint than edge/chrome browser and highly performant.
- keyboard friendly with vim-style keymaps and command line support in address bar.
- global redirection to bypass censorship.
-- user CSS/JS at will. Ex. pressing "md" in no-focus mode to preview markdown file.
+- user CSS/JS at will. Ex. pressing `md` in no-focus mode to preview markdown file.
- global CSS/JS for all sites at will.
- CSS/JS for domains, similar to [uweb](https://jamesfengcao.gitlab.io/uweb/en/sitejs/index.html), but use sitejs/[domain].js or sitecss/[domain].css, not [domain root].js/css.
- customizable.
- dark theme support.
-Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight.
+> Note: Usually electron apps are heavyweight as they use browsers for simple things. Ebrowser uses core chromium effectively and very lightweight.
## Installing (for Windows, MacOS and Linux)
### Install with prebuilt binaries
@@ -20,7 +20,7 @@ You can find prebuilt binaries [here](https://github.com/torappinfo/ebrowser/rel
### Install ebrowser and electron separatedly (Recommended)
#### Install ebrowser
-Either download (Click the green "Code" button above the file list => Select "Download ZIP") and unzip from
+Either download (Click the green `Code` button above the file list => Select `Download ZIP`) and unzip from
https://github.com/torappinfo/ebrowser
@@ -28,7 +28,7 @@ OR download and unzip ebrowser package directly from any of npm mirror sites lik
npm install ebrowser
-OR download/"git clone" files directly from any of [mirror repositories](https://gitlab.com/jamesfengcao/uweb/-/blob/master/en/mirrors.md) and ebrowser is under the folder "misc/ebrowser".
+OR download/`git clone` files directly from any of [mirror repositories](https://gitlab.com/jamesfengcao/uweb/-/blob/master/en/mirrors.md) and ebrowser is under the folder `misc/ebrowser`.
#### Install electron
Before you can run ebrowser, you need to install electron either with nodejs by
@@ -46,9 +46,9 @@ OR
electron [the-path-of-folder-with-downloaded-ebrowser-files]
### Update app quickly without updating chromium
-Pressing "Alt" to show the menu bar and choose "Check for updates" under "Help". OR
+Pressing `Alt` to show the menu bar and choose `Check for updates` under `Help`. OR
-Type ":update" in the address bar and press "enter" key to update.
+Type `:update` in the address bar and press `enter` key to update.
## Key shortcuts
- Alt: show menu
@@ -62,7 +62,7 @@ Type ":update" in the address bar and press "enter" key to update.
- CTRL+TAB: switch to next tab
- CTRL+SHIFT+TAB: switch to previous tab
- CTRL+W: close Tab
-- CTRL+SHIFT+R: enable global redirection ("gredirect.json")
+- CTRL+SHIFT+R: enable global redirection (`gredirect.json`)
- CTRL+R: disable global redirection
- ESC: remove focus. similar to vi normal mode.
- F1: Help
@@ -70,10 +70,10 @@ Type ":update" in the address bar and press "enter" key to update.
- F12: devtools
## Address bar commands
-Like any popular browser, the very first word in address bar if defined in "search.json" identifies a search engine. Moreover, the address bar serves as command line interface:
+Like any popular browser, the very first word in address bar if defined in `search.json` identifies a search engine. Moreover, the address bar serves as command line interface:
- "/" for find-in-page
- ":" for address bar commands
- - ac [bookmark/history path w/o ext] : load ".rec" file for autocomplete.
+ - ac [bookmark/history path w/o ext] : load `.rec` file for autocomplete.
- b [bookmarkfilename w/o ext] : bookmark current page in file.
- bjs : Browser-level JavaScript execution.
- bml [filename w/o extension] [arguments...]: load/execute the javascript file.
diff --git a/misc/ebrowser/index.html b/misc/ebrowser/index.html
index 76e3946a..71cff917 100644
--- a/misc/ebrowser/index.html
+++ b/misc/ebrowser/index.html
@@ -104,8 +104,6 @@ You should have received a copy of the GNU General Public License along with thi
mapKeys = JSON.parse(jsonStr);
}catch(e){}
});
- appendAutoc_rec(path.join(__dirname,'default.autoc'),null);
- appendAutoc_rec(path.join(__dirname,'bookmark.rec'),' ');
function initSearchEngines(jsonStr){
try{
@@ -279,6 +277,13 @@ You should have received a copy of the GNU General Public License along with thi
lastVal = null; //trigger full search
}catch(e){return;}
}
+ async function loadAutoc(){
+ await appendAutoc_rec(path.join(__dirname,'default.autoc'),null);
+ await appendAutoc_rec(path.join(__dirname,'bookmark.rec'),' ');
+
+ let inp = document.forms[0].q;
+ autocomplete(inp,inp.nextElementSibling,autocStrArray);
+ }
function keyPress(e){
var inputE = document.forms[0].q;
if (e.altKey||e.metaKey)
@@ -844,12 +849,9 @@ function autocomplete(inp,container,arr) {
diff --git a/misc/ebrowser/search.json b/misc/ebrowser/search.json
index 3c55d54d..07886d0f 100644
--- a/misc/ebrowser/search.json
+++ b/misc/ebrowser/search.json
@@ -1,5 +1,6 @@
{
"b":"https://www4.bing.com/search?q=%s",
+ "mm":"i:0/js/uweb2edit2.js:https://agent.minimaxi.com/?uweb=%s",
"n":"https://www.n.cn/chathome?q=%s",
"z":"https://chat.z.ai/?q=%s",
"ff":"http://frogfind.com/?q=%s",
diff --git a/sitemap.xml b/sitemap.xml
index d2ad7e1b..ffb5daef 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,14 +4,14 @@
https://jamesfengcao.gitlab.io/uweb/en/sitemap.xml
- 2025-12-05T19:03:32+08:00
+ 2025-12-30T23:10:52+08:00
https://jamesfengcao.gitlab.io/uweb/zh/sitemap.xml
- 2025-11-27T11:23:15+08:00
+ 2025-12-30T22:47:23+08:00
diff --git a/zh/filemanager/index.html b/zh/filemanager/index.html
index 58604e9c..d5a10cfd 100644
--- a/zh/filemanager/index.html
+++ b/zh/filemanager/index.html
@@ -31,6 +31,10 @@
首页 标签
+
+ English
+
+
diff --git a/zh/index.html b/zh/index.html
index 8e338887..897c484c 100644
--- a/zh/index.html
+++ b/zh/index.html
@@ -63,6 +63,12 @@
+
+
+ 配置浏览器特色服务
+
+
+
搜索引擎搜索查询URL汇总
@@ -75,12 +81,6 @@
-
-
- 配置浏览器特色服务
-
-
-
配置浏览器常用命令
diff --git a/zh/index.xml b/zh/index.xml
index 057f7b95..a0f8aedb 100644
--- a/zh/index.xml
+++ b/zh/index.xml
@@ -6,8 +6,15 @@
Recent content on 超微浏览器: 威、快、高效、极致优化
Hugo
zh
- Thu, 27 Nov 2025 11:23:15 +0800
+ Tue, 30 Dec 2025 22:47:23 +0800
+ -
+
配置浏览器特色服务
+ https://jamesfengcao.gitlab.io/uweb/zh/urls/
+ Tue, 30 Dec 2025 00:00:00 +0000
+ https://jamesfengcao.gitlab.io/uweb/zh/urls/
+ <p><a href="../index.html#">超微浏览器</a>下点击配置链接可自动添加特色服务,<b>强制清空后台重启后</b>长按图像按钮可用。<br>
特色服务中的url支持<a href="../cmds/index.html#">"%u","%t"等替换</a>。1144以下版本需删除末尾的"%u"。</p>
<p>配置文件"default.urls"如下:</p>
<p><a href="i:01自动全屏播放:i:5f%25u">自动全屏播放:i:5f%u</a></p>
<p><a href="i:01重定向/编辑:e:%25u">重定向/编辑:e:%u</a></p>
<p><a href="i:01保存地址栏提示:i:51:%25u">保存地址栏提示:i:51:%u</a></p>
<p><a href="i:01书签:i:52:%25u">书签:i:52:%u</a></p>
<p><a href="i:01笔记:i:53:%25u">笔记:i:53:%u</a></p>
<p><a href="i:01保存为搜索引擎:i:54:%25u">保存为搜索引擎:i:54:%u</a></p>
<p><a href="i:01添加至链接:i:55:%25u">添加至链接:i:55:%u</a></p>
<p><a href="i:01保存到桌面:i:58%25u">保存到桌面:i:58%u</a></p>
<p><a href="i:01中文简体GB18030:i:5hGB18030:%25u">中文简体GB18030:i:5hGB18030:%u</a></p>
<p><a href="i:01中文繁体BIG5:i:5hBIG5:%25u">中文繁体BIG5:i:5hBIG5:%u</a></p>
<p><a href="i:01媒体扫描单文件::001%25u">媒体扫描单文件::001%u</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=%25u">tgurl:https://tx.me/share/url?url=%u</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../download %25u">tgdownload:https://tx.me/share/url?url=../download %u</a></p>
<p><a href="i:01兼容模式:i:5d%25u">兼容模式:i:5d%u</a></p>
<p><a href="i:01历史价格:http://www.hisprice.cn/his.php?hisurl=%25u">历史价格:http://www.hisprice.cn/his.php?hisurl=%u</a></p>
<p><a href="i:01历史价格2:http://p.zwjhl.com/price.aspx?url=%25u">历史价格2:http://p.zwjhl.com/price.aspx?url=%u</a></p>
<p><a href="i:01慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%25u">慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u</a></p>
<p><a href="i:01过客比价:http://www.tool168.cn/?m=history&a=view&k=%25u">过客比价:http://www.tool168.cn/?m=history&a=view&k=%u</a></p>
<p><a href="i:01历史价格3:http://www.xitie.com/s.php?no=%25u">历史价格3:http://www.xitie.com/s.php?no=%u</a></p>
<p><a href="i:01买买买:https://just998.com/price?url=%25u">买买买:https://just998.com/price?url=%u</a></p>
<p><a href="i:01网页快照:https://his.sh/%25u">网页快照:https://his.sh/%u</a></p>
<p><a href="i:01有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%25u">有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u</a></p>
<p><a href="i:01搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%25u">搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u</a></p>
<p><a href="i:01papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%25u">papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u</a></p>
<p><a href="i:01google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%25u">google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u</a></p>
<p><a href="i:01网址工具:https://wn.run/%25u">网址工具:https://wn.run/%u</a></p>
<p><a href="i:01查看源码:view-source:%25u">查看源码:view-source:%u</a></p>
<p><a href="i:01outline:https://www.outline.com/%25u">outline:https://www.outline.com/%u</a></p>
<p><a href="i:012pdf:https://www.web2pdfconvert.com#%25u">2pdf:https://www.web2pdfconvert.com#%u</a></p>
<p><a href="i:01printfriendly:https://www.printfriendly.com/print/?url=%25u">printfriendly:https://www.printfriendly.com/print/?url=%u</a></p>
<p><a href="i:01htmlview:https://htmlview.glitch.me/?%25u">htmlview:https://htmlview.glitch.me/?%u</a></p>
<p><a href="i:01htmlpreview:https://htmlpreview.github.io/?%25u">htmlpreview:https://htmlpreview.github.io/?%u</a></p>
<p><a href="i:01webarchive:https://web.archive.org/web/*/%25u">webarchive:https://web.archive.org/web/*/%u</a></p>
<p><a href="i:01archive:https://archive.is/?run=1&url=%25u">archive:https://archive.is/?run=1&url=%u</a></p>
<p><a href="i:01Add to Feedly:https://feedly.com/i/subscription/feed/%25u">Add to Feedly:https://feedly.com/i/subscription/feed/%u</a></p>
<p><a href="i:01Site analyzer:https://www.similarweb.com/website/%25u">Site analyzer:https://www.similarweb.com/website/%u</a></p>
<p><a href="i:01Site buildwith:https://builtwith.com/?%25u">Site buildwith:https://builtwith.com/?%u</a></p>
<p><a href="i:01instapaper:https://www.instapaper.com/text?u=%25u">instapaper:https://www.instapaper.com/text?u=%u</a></p>
<p><a href="i:01xdocin:https://view.xdocin.com/view?src=%25u">xdocin:https://view.xdocin.com/view?src=%u</a></p>
<p><a href="i:01google docs:http://docs.google.com/gview?embedded=true&url=%25u">google docs:http://docs.google.com/gview?embedded=true&url=%u</a></p>
<p>其中"重定向"由<a href="../redirect/index.html#">文件default.redirect配置</a>,对"file://"重定向将调用合适编辑器编辑文件。</p>
<p>适合向TV端发送:(TV端需先执行“等待接收...”)<br>
<a href="i:01发送url/file:i:5j%25u">发送url/file:i:5j%u</a></p>
<p><a href="i:01发送url(播放器):i:5ji:5p%25u">发送url(播放器):i:5ji:5p%u</a></p>
<p><a href="i:01发送url(书签):i:5ji:52../home5:%25u">发送url(书签):i:5ji:52../home5:%u</a></p>
<p><a href="i:01发送url(剪贴板):i:5ji:5b%25u">发送url(剪贴板):i:5ji:5b%u</a></p>
<p><a href="i:01发送url(全屏播放):i:5ji:5f%25u">发送url(全屏播放):i:5ji:5f%u</a></p>
<p><a href="i:01发送url(书签全屏):i:5ji:52../home5:i:5f%25u">发送url(书签全屏):i:5ji:52../home5:i:5f%u</a></p>
<p><a href="i:01发送url(整网全屏):i:5ji:0mi:5f:%25u">发送url(整网全屏):i:5ji:0mi:5f:%u</a></p>
<p><a href="i:01发送url(只显视频):i:5ji:0mc16:%25u">发送url(只显视频):i:5ji:0mc16:%u</a></p>
<p><a href="i:01发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%25u">发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u</a></p>
<p>以下需安装相应的<a href="../html5/index.html#">html5应用</a>至匹配的目录:</p>
<p><a href="i:01大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%25u">大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u</a></p>
<p><a href="i:01markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%25u">markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u</a></p>
<p><a href="i:01plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%25u">plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u</a></p>
<p><a href="i:01dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%25u">dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u</a></p>
+
-
常用语及输入法辅佐
https://jamesfengcao.gitlab.io/uweb/zh/input/
@@ -92,13 +99,6 @@
https://jamesfengcao.gitlab.io/uweb/zh/sitemap/
<p><a href="../../en/mirrors/index.html#">专用镜像</a><br>
<a href="i:61ver:../../latest.html#">检测并下载最新版</a></p>
<h4 id="界面配置">界面配置</h4>
<ul>
<li><a href="../search/index.html#">搜索引擎</a></li>
<li><a href="../searchurl/homescreen.html#">主页</a></li>
<li><a href="i:61:../searchurl/func.html">界面配置及杂项</a> (<a href="i:61:https://gitee.com/jamesfengcao/uweb/raw/master/zh/searchurl/func.html">gitee镜像</a>)</li>
<li><a href="../searchurl/backup.html#">备份与恢复</a></li>
</ul>
<h4 id="个性化">个性化</h4>
<ul>
<li>工具条按钮长按菜单
<ul>
<li><a href="../useragents/index.html#">浏览器标识</a></li>
<li><a href="../rjs/index.html#">js脚本</a></li>
<li><a href="../urls/index.html#">常用服务</a></li>
<li><a href="../links/index.html#">常用链接</a></li>
<li><a href="../cmds/index.html#">常用命令</a></li>
<li><a href="../rjs/index.html#">远程脚本</a></li>
<li><a href="../textprocess/index.html#">选中文本类菜单</a></li>
</ul>
</li>
<li><a href="../longclick/index.html#">长按链接弹出菜单</a></li>
<li><a href="../icons/index.html#">底部工具条定制</a></li>
<li><a href="../gesture/index.html#">手势</a></li>
<li><a href="i:60config.html:../searchurl/config.html">高级个性化定制</a></li>
</ul>
<h4 id="高级设置">高级设置</h4>
<h5 id="内容类">内容类</h5>
<ul>
<li><a href="../adblock/index.html#">信息隐藏</a></li>
<li><a href="../globalcss/index.html#">CSS样式</a></li>
<li><a href="../redirect/index.html#">重定向</a></li>
<li><a href="../sitejs/index.html#">特定网址用户脚本及样式</a></li>
<li><a href="../offlinecache/index.html#">网站离线资源</a></li>
</ul>
<h5 id="工具应用类">工具应用类</h5>
<ul>
<li><a href="../bookmarklet/index.html#">小书签</a></li>
<li><a href="../tcron/index.html#">定时脚本</a></li>
<li><a href="../filecap/index.html#">文件预处理</a></li>
<li><a href="../html5/index.html#">html5应用</a></li>
<li><a href="../filemanager/index.html#">文件管理器</a></li>
<li><a href="../tools/index.html#">工具汇总</a></li>
<li>终端应用及Termux
<ul>
<li><a href="../bc/index.html#">超级计算器</a></li>
<li><a href="../gnuplot/index.html#">函数作图</a></li>
<li><a href="../loadbt/index.html#">离线下载</a></li>
</ul>
</li>
<li>输入法辅助
<ul>
<li><a href="../searchurl/input.html#">部件检索</a></li>
</ul>
</li>
</ul>
<h5 id="综合">综合</h5>
<ul>
<li><a href="../filenames/index.html#">配置文件列表</a></li>
<li><a href="../searchurl/plugins.html#">插件</a></li>
</ul>
<h4 id="使用技巧">使用技巧</h4>
<ul>
<li><a href="../../assets/help_zh.html#">使用攻略</a></li>
<li><a href="../tips/index.html#">使用技巧</a></li>
<li><a href="../video/index.html#">视频</a></li>
<li><a href="../logcat/index.html#">安卓系统出错诊断</a></li>
</ul>
- -
-
配置浏览器特色服务
- https://jamesfengcao.gitlab.io/uweb/zh/urls/
- Tue, 28 Jun 2022 00:00:00 +0000
- https://jamesfengcao.gitlab.io/uweb/zh/urls/
- <p><a href="../index.html#">超微浏览器</a>下点击配置链接可自动添加特色服务,<b>强制清空后台重启后</b>长按图像按钮可用。</p>
<p>配置文件"default.urls"如下:</p>
<p><a href="i:01自动全屏播放:i:5f">自动全屏播放:i:5f</a></p>
<p><a href="i:01重定向/编辑:e:">重定向/编辑:e:</a></p>
<p><a href="i:01保存地址栏提示:i:51:">保存地址栏提示:i:51:</a></p>
<p><a href="i:01书签:i:52:">书签:i:52:</a></p>
<p><a href="i:01笔记:i:53:">笔记:i:53:</a></p>
<p><a href="i:01保存为搜索引擎:i:54:">保存为搜索引擎:i:54:</a></p>
<p><a href="i:01添加至链接:i:55:">添加至链接:i:55:</a></p>
<p><a href="i:01保存到桌面:i:58">保存到桌面:i:58</a></p>
<p><a href="i:01中文简体GB18030:i:5hGB18030:">中文简体GB18030:i:5hGB18030:</a></p>
<p><a href="i:01中文繁体BIG5:i:5hBIG5:">中文繁体BIG5:i:5hBIG5:</a></p>
<p><a href="i:01媒体扫描单文件::001">媒体扫描单文件::001</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=">tgurl:https://tx.me/share/url?url=</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../download ">tgdownload:https://tx.me/share/url?url=../download </a></p>
<p><a href="i:01兼容模式:i:5d">兼容模式:i:5d</a></p>
<p><a href="i:01历史价格:http://www.hisprice.cn/his.php?hisurl=">历史价格:http://www.hisprice.cn/his.php?hisurl=</a></p>
<p><a href="i:01历史价格2:http://p.zwjhl.com/price.aspx?url=">历史价格2:http://p.zwjhl.com/price.aspx?url=</a></p>
<p><a href="i:01慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=">慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=</a></p>
<p><a href="i:01过客比价:http://www.tool168.cn/?m=history&a=view&k=">过客比价:http://www.tool168.cn/?m=history&a=view&k=</a></p>
<p><a href="i:01历史价格3:http://www.xitie.com/s.php?no=">历史价格3:http://www.xitie.com/s.php?no=</a></p>
<p><a href="i:01买买买:https://just998.com/price?url=">买买买:https://just998.com/price?url=</a></p>
<p><a href="i:01网页快照:https://his.sh/">网页快照:https://his.sh/</a></p>
<p><a href="i:01有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=">有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=</a></p>
<p><a href="i:01搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=">搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=</a></p>
<p><a href="i:01papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=">papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=</a></p>
<p><a href="i:01google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=">google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=</a></p>
<p><a href="i:01网址工具:https://wn.run/">网址工具:https://wn.run/</a></p>
<p><a href="i:01查看源码:view-source:">查看源码:view-source:</a></p>
<p><a href="i:01outline:https://www.outline.com/">outline:https://www.outline.com/</a></p>
<p><a href="i:012pdf:https://www.web2pdfconvert.com#">2pdf:https://www.web2pdfconvert.com#</a></p>
<p><a href="i:01printfriendly:https://www.printfriendly.com/print/?url=">printfriendly:https://www.printfriendly.com/print/?url=</a></p>
<p><a href="i:01htmlview:https://htmlview.glitch.me/?">htmlview:https://htmlview.glitch.me/?</a></p>
<p><a href="i:01htmlpreview:https://htmlpreview.github.io/?">htmlpreview:https://htmlpreview.github.io/?</a></p>
<p><a href="i:01webarchive:https://web.archive.org/web/*/">webarchive:https://web.archive.org/web/*/</a></p>
<p><a href="i:01archive:https://archive.is/?run=1&url=">archive:https://archive.is/?run=1&url=</a></p>
<p><a href="i:01Add to Feedly:https://feedly.com/i/subscription/feed/">Add to Feedly:https://feedly.com/i/subscription/feed/</a></p>
<p><a href="i:01Site analyzer:https://www.similarweb.com/website/">Site analyzer:https://www.similarweb.com/website/</a></p>
<p><a href="i:01Site buildwith:https://builtwith.com/?">Site buildwith:https://builtwith.com/?</a></p>
<p><a href="i:01instapaper:https://www.instapaper.com/text?u=">instapaper:https://www.instapaper.com/text?u=</a></p>
<p><a href="i:01xdocin:https://view.xdocin.com/view?src=">xdocin:https://view.xdocin.com/view?src=</a></p>
<p><a href="i:01google docs:http://docs.google.com/gview?embedded=true&url=">google docs:http://docs.google.com/gview?embedded=true&url=</a></p>
<p>其中"重定向"由<a href="../redirect/index.html#">文件default.redirect配置</a>,对"file://"重定向将调用合适编辑器编辑文件。</p>
<p>适合向TV端发送:(TV端需先执行“等待接收...”)<br>
<a href="i:01发送url/file:i:5j">发送url/file:i:5j</a></p>
<p><a href="i:01发送url(播放器):i:5ji:5p">发送url(播放器):i:5ji:5p</a></p>
<p><a href="i:01发送url(书签):i:5ji:52../home5:">发送url(书签):i:5ji:52../home5:</a></p>
<p><a href="i:01发送url(剪贴板):i:5ji:5b">发送url(剪贴板):i:5ji:5b</a></p>
<p><a href="i:01发送url(全屏播放):i:5ji:5f">发送url(全屏播放):i:5ji:5f</a></p>
<p><a href="i:01发送url(书签全屏):i:5ji:52../home5:i:5f">发送url(书签全屏):i:5ji:52../home5:i:5f</a></p>
<p><a href="i:01发送url(整网全屏):i:5ji:0mi:5f:">发送url(整网全屏):i:5ji:0mi:5f:</a></p>
<p><a href="i:01发送url(只显视频):i:5ji:0mc16:">发送url(只显视频):i:5ji:0mc16:</a></p>
<p><a href="i:01发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:">发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:</a></p>
<p>以下需安装相应的<a href="../html5/index.html#">html5应用</a>至匹配的目录:</p>
<p><a href="i:01大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=">大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=</a></p>
<p><a href="i:01markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=">markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=</a></p>
<p><a href="i:01plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=">plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=</a></p>
<p><a href="i:01dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=">dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=</a></p>
<p><a href="i:01pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=">pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=</a></p>
<p><a href="i:01epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=">epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=</a></p>
-
-
信息隐藏技术总览
https://jamesfengcao.gitlab.io/uweb/zh/adblock/
diff --git a/zh/sitemap.xml b/zh/sitemap.xml
index 242ab672..8fccc48c 100644
--- a/zh/sitemap.xml
+++ b/zh/sitemap.xml
@@ -2,6 +2,45 @@
+ https://jamesfengcao.gitlab.io/uweb/zh/topposts/
+ 2025-12-30T22:47:23+08:00
+
+
+
+ https://jamesfengcao.gitlab.io/uweb/zh/
+ 2025-12-30T22:47:23+08:00
+
+
+
+ https://jamesfengcao.gitlab.io/uweb/zh/urls/
+ 2025-12-30T22:47:23+08:00
+
+
+
https://jamesfengcao.gitlab.io/uweb/zh/_posts/
2025-11-23T15:47:07+08:00
-
- https://jamesfengcao.gitlab.io/uweb/zh/
- 2025-11-27T11:23:15+08:00
-
-
https://jamesfengcao.gitlab.io/uweb/zh/links/
2025-04-09T00:38:03+08:00
@@ -111,19 +137,6 @@
hreflang="zh"
href="https://jamesfengcao.gitlab.io/uweb/zh/redirect/"
/>
-
- https://jamesfengcao.gitlab.io/uweb/zh/topposts/
- 2025-11-27T11:23:15+08:00
-
-
https://jamesfengcao.gitlab.io/uweb/zh/search/
2025-11-27T11:23:15+08:00
@@ -270,19 +283,6 @@
hreflang="zh"
href="https://jamesfengcao.gitlab.io/uweb/zh/sitemap/"
/>
-
- https://jamesfengcao.gitlab.io/uweb/zh/urls/
- 2025-04-08T23:16:00+08:00
-
-
https://jamesfengcao.gitlab.io/uweb/zh/adblock/
2025-04-09T00:06:54+08:00
@@ -386,6 +386,16 @@
https://jamesfengcao.gitlab.io/uweb/zh/filemanager/
2024-04-02T11:46:25+08:00
+
+
https://jamesfengcao.gitlab.io/uweb/zh/bc/
2024-04-02T11:46:25+08:00
diff --git a/zh/topposts/index.xml b/zh/topposts/index.xml
index bc8a130a..cbe0634c 100644
--- a/zh/topposts/index.xml
+++ b/zh/topposts/index.xml
@@ -6,8 +6,15 @@
Recent content in Topposts on 超微浏览器: 威、快、高效、极致优化
Hugo
zh
- Thu, 27 Nov 2025 11:23:15 +0800
+ Tue, 30 Dec 2025 22:47:23 +0800
+ -
+
配置浏览器特色服务
+ https://jamesfengcao.gitlab.io/uweb/zh/urls/
+ Tue, 30 Dec 2025 00:00:00 +0000
+ https://jamesfengcao.gitlab.io/uweb/zh/urls/
+ <p><a href="../index.html#">超微浏览器</a>下点击配置链接可自动添加特色服务,<b>强制清空后台重启后</b>长按图像按钮可用。<br>
特色服务中的url支持<a href="../cmds/index.html#">"%u","%t"等替换</a>。1144以下版本需删除末尾的"%u"。</p>
<p>配置文件"default.urls"如下:</p>
<p><a href="i:01自动全屏播放:i:5f%25u">自动全屏播放:i:5f%u</a></p>
<p><a href="i:01重定向/编辑:e:%25u">重定向/编辑:e:%u</a></p>
<p><a href="i:01保存地址栏提示:i:51:%25u">保存地址栏提示:i:51:%u</a></p>
<p><a href="i:01书签:i:52:%25u">书签:i:52:%u</a></p>
<p><a href="i:01笔记:i:53:%25u">笔记:i:53:%u</a></p>
<p><a href="i:01保存为搜索引擎:i:54:%25u">保存为搜索引擎:i:54:%u</a></p>
<p><a href="i:01添加至链接:i:55:%25u">添加至链接:i:55:%u</a></p>
<p><a href="i:01保存到桌面:i:58%25u">保存到桌面:i:58%u</a></p>
<p><a href="i:01中文简体GB18030:i:5hGB18030:%25u">中文简体GB18030:i:5hGB18030:%u</a></p>
<p><a href="i:01中文繁体BIG5:i:5hBIG5:%25u">中文繁体BIG5:i:5hBIG5:%u</a></p>
<p><a href="i:01媒体扫描单文件::001%25u">媒体扫描单文件::001%u</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=%25u">tgurl:https://tx.me/share/url?url=%u</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../../download %25u">tgdownload:https://tx.me/share/url?url=../../download %u</a></p>
<p><a href="i:01兼容模式:i:5d%25u">兼容模式:i:5d%u</a></p>
<p><a href="i:01历史价格:http://www.hisprice.cn/his.php?hisurl=%25u">历史价格:http://www.hisprice.cn/his.php?hisurl=%u</a></p>
<p><a href="i:01历史价格2:http://p.zwjhl.com/price.aspx?url=%25u">历史价格2:http://p.zwjhl.com/price.aspx?url=%u</a></p>
<p><a href="i:01慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%25u">慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u</a></p>
<p><a href="i:01过客比价:http://www.tool168.cn/?m=history&a=view&k=%25u">过客比价:http://www.tool168.cn/?m=history&a=view&k=%u</a></p>
<p><a href="i:01历史价格3:http://www.xitie.com/s.php?no=%25u">历史价格3:http://www.xitie.com/s.php?no=%u</a></p>
<p><a href="i:01买买买:https://just998.com/price?url=%25u">买买买:https://just998.com/price?url=%u</a></p>
<p><a href="i:01网页快照:https://his.sh/%25u">网页快照:https://his.sh/%u</a></p>
<p><a href="i:01有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%25u">有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u</a></p>
<p><a href="i:01搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%25u">搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u</a></p>
<p><a href="i:01papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%25u">papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u</a></p>
<p><a href="i:01google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%25u">google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u</a></p>
<p><a href="i:01网址工具:https://wn.run/%25u">网址工具:https://wn.run/%u</a></p>
<p><a href="i:01查看源码:view-source:%25u">查看源码:view-source:%u</a></p>
<p><a href="i:01outline:https://www.outline.com/%25u">outline:https://www.outline.com/%u</a></p>
<p><a href="i:012pdf:https://www.web2pdfconvert.com#%25u">2pdf:https://www.web2pdfconvert.com#%u</a></p>
<p><a href="i:01printfriendly:https://www.printfriendly.com/print/?url=%25u">printfriendly:https://www.printfriendly.com/print/?url=%u</a></p>
<p><a href="i:01htmlview:https://htmlview.glitch.me/?%25u">htmlview:https://htmlview.glitch.me/?%u</a></p>
<p><a href="i:01htmlpreview:https://htmlpreview.github.io/?%25u">htmlpreview:https://htmlpreview.github.io/?%u</a></p>
<p><a href="i:01webarchive:https://web.archive.org/web/*/%25u">webarchive:https://web.archive.org/web/*/%u</a></p>
<p><a href="i:01archive:https://archive.is/?run=1&url=%25u">archive:https://archive.is/?run=1&url=%u</a></p>
<p><a href="i:01Add to Feedly:https://feedly.com/i/subscription/feed/%25u">Add to Feedly:https://feedly.com/i/subscription/feed/%u</a></p>
<p><a href="i:01Site analyzer:https://www.similarweb.com/website/%25u">Site analyzer:https://www.similarweb.com/website/%u</a></p>
<p><a href="i:01Site buildwith:https://builtwith.com/?%25u">Site buildwith:https://builtwith.com/?%u</a></p>
<p><a href="i:01instapaper:https://www.instapaper.com/text?u=%25u">instapaper:https://www.instapaper.com/text?u=%u</a></p>
<p><a href="i:01xdocin:https://view.xdocin.com/view?src=%25u">xdocin:https://view.xdocin.com/view?src=%u</a></p>
<p><a href="i:01google docs:http://docs.google.com/gview?embedded=true&url=%25u">google docs:http://docs.google.com/gview?embedded=true&url=%u</a></p>
<p>其中"重定向"由<a href="../redirect/index.html#">文件default.redirect配置</a>,对"file://"重定向将调用合适编辑器编辑文件。</p>
<p>适合向TV端发送:(TV端需先执行“等待接收...”)<br>
<a href="i:01发送url/file:i:5j%25u">发送url/file:i:5j%u</a></p>
<p><a href="i:01发送url(播放器):i:5ji:5p%25u">发送url(播放器):i:5ji:5p%u</a></p>
<p><a href="i:01发送url(书签):i:5ji:52../home5:%25u">发送url(书签):i:5ji:52../home5:%u</a></p>
<p><a href="i:01发送url(剪贴板):i:5ji:5b%25u">发送url(剪贴板):i:5ji:5b%u</a></p>
<p><a href="i:01发送url(全屏播放):i:5ji:5f%25u">发送url(全屏播放):i:5ji:5f%u</a></p>
<p><a href="i:01发送url(书签全屏):i:5ji:52../home5:i:5f%25u">发送url(书签全屏):i:5ji:52../home5:i:5f%u</a></p>
<p><a href="i:01发送url(整网全屏):i:5ji:0mi:5f:%25u">发送url(整网全屏):i:5ji:0mi:5f:%u</a></p>
<p><a href="i:01发送url(只显视频):i:5ji:0mc16:%25u">发送url(只显视频):i:5ji:0mc16:%u</a></p>
<p><a href="i:01发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%25u">发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u</a></p>
<p>以下需安装相应的<a href="../html5/index.html#">html5应用</a>至匹配的目录:</p>
<p><a href="i:01大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%25u">大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u</a></p>
<p><a href="i:01markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%25u">markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u</a></p>
<p><a href="i:01plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%25u">plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u</a></p>
<p><a href="i:01dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%25u">dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u</a></p>
+
-
搜索引擎搜索查询URL汇总
https://jamesfengcao.gitlab.io/uweb/zh/search/
@@ -22,13 +29,6 @@
https://jamesfengcao.gitlab.io/uweb/zh/sitemap/
<p><a href="../../en/mirrors/index.html#">专用镜像</a><br>
<a href="i:61ver:../../latest.html#">检测并下载最新版</a></p>
<h4 id="界面配置">界面配置</h4>
<ul>
<li><a href="../search/index.html#">搜索引擎</a></li>
<li><a href="../searchurl/homescreen.html#">主页</a></li>
<li><a href="i:61:../searchurl/func.html">界面配置及杂项</a> (<a href="i:61:https://gitee.com/jamesfengcao/uweb/raw/master/zh/searchurl/func.html">gitee镜像</a>)</li>
<li><a href="../searchurl/backup.html#">备份与恢复</a></li>
</ul>
<h4 id="个性化">个性化</h4>
<ul>
<li>工具条按钮长按菜单
<ul>
<li><a href="../useragents/index.html#">浏览器标识</a></li>
<li><a href="../rjs/index.html#">js脚本</a></li>
<li><a href="../urls/index.html#">常用服务</a></li>
<li><a href="../links/index.html#">常用链接</a></li>
<li><a href="../cmds/index.html#">常用命令</a></li>
<li><a href="../rjs/index.html#">远程脚本</a></li>
<li><a href="../textprocess/index.html#">选中文本类菜单</a></li>
</ul>
</li>
<li><a href="../longclick/index.html#">长按链接弹出菜单</a></li>
<li><a href="../icons/index.html#">底部工具条定制</a></li>
<li><a href="../gesture/index.html#">手势</a></li>
<li><a href="i:60config.html:../searchurl/config.html">高级个性化定制</a></li>
</ul>
<h4 id="高级设置">高级设置</h4>
<h5 id="内容类">内容类</h5>
<ul>
<li><a href="../adblock/index.html#">信息隐藏</a></li>
<li><a href="../globalcss/index.html#">CSS样式</a></li>
<li><a href="../redirect/index.html#">重定向</a></li>
<li><a href="../sitejs/index.html#">特定网址用户脚本及样式</a></li>
<li><a href="../offlinecache/index.html#">网站离线资源</a></li>
</ul>
<h5 id="工具应用类">工具应用类</h5>
<ul>
<li><a href="../bookmarklet/index.html#">小书签</a></li>
<li><a href="../tcron/index.html#">定时脚本</a></li>
<li><a href="../filecap/index.html#">文件预处理</a></li>
<li><a href="../html5/index.html#">html5应用</a></li>
<li><a href="../filemanager/index.html#">文件管理器</a></li>
<li><a href="../tools/index.html#">工具汇总</a></li>
<li>终端应用及Termux
<ul>
<li><a href="../bc/index.html#">超级计算器</a></li>
<li><a href="../gnuplot/index.html#">函数作图</a></li>
<li><a href="../loadbt/index.html#">离线下载</a></li>
</ul>
</li>
<li>输入法辅助
<ul>
<li><a href="../searchurl/input.html#">部件检索</a></li>
</ul>
</li>
</ul>
<h5 id="综合">综合</h5>
<ul>
<li><a href="../filenames/index.html#">配置文件列表</a></li>
<li><a href="../searchurl/plugins.html#">插件</a></li>
</ul>
<h4 id="使用技巧">使用技巧</h4>
<ul>
<li><a href="../../assets/help_zh.html#">使用攻略</a></li>
<li><a href="../tips/index.html#">使用技巧</a></li>
<li><a href="../video/index.html#">视频</a></li>
<li><a href="../logcat/index.html#">安卓系统出错诊断</a></li>
</ul>
- -
-
配置浏览器特色服务
- https://jamesfengcao.gitlab.io/uweb/zh/urls/
- Tue, 28 Jun 2022 00:00:00 +0000
- https://jamesfengcao.gitlab.io/uweb/zh/urls/
- <p><a href="../index.html#">超微浏览器</a>下点击配置链接可自动添加特色服务,<b>强制清空后台重启后</b>长按图像按钮可用。</p>
<p>配置文件"default.urls"如下:</p>
<p><a href="i:01自动全屏播放:i:5f">自动全屏播放:i:5f</a></p>
<p><a href="i:01重定向/编辑:e:">重定向/编辑:e:</a></p>
<p><a href="i:01保存地址栏提示:i:51:">保存地址栏提示:i:51:</a></p>
<p><a href="i:01书签:i:52:">书签:i:52:</a></p>
<p><a href="i:01笔记:i:53:">笔记:i:53:</a></p>
<p><a href="i:01保存为搜索引擎:i:54:">保存为搜索引擎:i:54:</a></p>
<p><a href="i:01添加至链接:i:55:">添加至链接:i:55:</a></p>
<p><a href="i:01保存到桌面:i:58">保存到桌面:i:58</a></p>
<p><a href="i:01中文简体GB18030:i:5hGB18030:">中文简体GB18030:i:5hGB18030:</a></p>
<p><a href="i:01中文繁体BIG5:i:5hBIG5:">中文繁体BIG5:i:5hBIG5:</a></p>
<p><a href="i:01媒体扫描单文件::001">媒体扫描单文件::001</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=">tgurl:https://tx.me/share/url?url=</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../../download ">tgdownload:https://tx.me/share/url?url=../../download </a></p>
<p><a href="i:01兼容模式:i:5d">兼容模式:i:5d</a></p>
<p><a href="i:01历史价格:http://www.hisprice.cn/his.php?hisurl=">历史价格:http://www.hisprice.cn/his.php?hisurl=</a></p>
<p><a href="i:01历史价格2:http://p.zwjhl.com/price.aspx?url=">历史价格2:http://p.zwjhl.com/price.aspx?url=</a></p>
<p><a href="i:01慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=">慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=</a></p>
<p><a href="i:01过客比价:http://www.tool168.cn/?m=history&a=view&k=">过客比价:http://www.tool168.cn/?m=history&a=view&k=</a></p>
<p><a href="i:01历史价格3:http://www.xitie.com/s.php?no=">历史价格3:http://www.xitie.com/s.php?no=</a></p>
<p><a href="i:01买买买:https://just998.com/price?url=">买买买:https://just998.com/price?url=</a></p>
<p><a href="i:01网页快照:https://his.sh/">网页快照:https://his.sh/</a></p>
<p><a href="i:01有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=">有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=</a></p>
<p><a href="i:01搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=">搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=</a></p>
<p><a href="i:01papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=">papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=</a></p>
<p><a href="i:01google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=">google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=</a></p>
<p><a href="i:01网址工具:https://wn.run/">网址工具:https://wn.run/</a></p>
<p><a href="i:01查看源码:view-source:">查看源码:view-source:</a></p>
<p><a href="i:01outline:https://www.outline.com/">outline:https://www.outline.com/</a></p>
<p><a href="i:012pdf:https://www.web2pdfconvert.com#">2pdf:https://www.web2pdfconvert.com#</a></p>
<p><a href="i:01printfriendly:https://www.printfriendly.com/print/?url=">printfriendly:https://www.printfriendly.com/print/?url=</a></p>
<p><a href="i:01htmlview:https://htmlview.glitch.me/?">htmlview:https://htmlview.glitch.me/?</a></p>
<p><a href="i:01htmlpreview:https://htmlpreview.github.io/?">htmlpreview:https://htmlpreview.github.io/?</a></p>
<p><a href="i:01webarchive:https://web.archive.org/web/*/">webarchive:https://web.archive.org/web/*/</a></p>
<p><a href="i:01archive:https://archive.is/?run=1&url=">archive:https://archive.is/?run=1&url=</a></p>
<p><a href="i:01Add to Feedly:https://feedly.com/i/subscription/feed/">Add to Feedly:https://feedly.com/i/subscription/feed/</a></p>
<p><a href="i:01Site analyzer:https://www.similarweb.com/website/">Site analyzer:https://www.similarweb.com/website/</a></p>
<p><a href="i:01Site buildwith:https://builtwith.com/?">Site buildwith:https://builtwith.com/?</a></p>
<p><a href="i:01instapaper:https://www.instapaper.com/text?u=">instapaper:https://www.instapaper.com/text?u=</a></p>
<p><a href="i:01xdocin:https://view.xdocin.com/view?src=">xdocin:https://view.xdocin.com/view?src=</a></p>
<p><a href="i:01google docs:http://docs.google.com/gview?embedded=true&url=">google docs:http://docs.google.com/gview?embedded=true&url=</a></p>
<p>其中"重定向"由<a href="../redirect/index.html#">文件default.redirect配置</a>,对"file://"重定向将调用合适编辑器编辑文件。</p>
<p>适合向TV端发送:(TV端需先执行“等待接收...”)<br>
<a href="i:01发送url/file:i:5j">发送url/file:i:5j</a></p>
<p><a href="i:01发送url(播放器):i:5ji:5p">发送url(播放器):i:5ji:5p</a></p>
<p><a href="i:01发送url(书签):i:5ji:52../home5:">发送url(书签):i:5ji:52../home5:</a></p>
<p><a href="i:01发送url(剪贴板):i:5ji:5b">发送url(剪贴板):i:5ji:5b</a></p>
<p><a href="i:01发送url(全屏播放):i:5ji:5f">发送url(全屏播放):i:5ji:5f</a></p>
<p><a href="i:01发送url(书签全屏):i:5ji:52../home5:i:5f">发送url(书签全屏):i:5ji:52../home5:i:5f</a></p>
<p><a href="i:01发送url(整网全屏):i:5ji:0mi:5f:">发送url(整网全屏):i:5ji:0mi:5f:</a></p>
<p><a href="i:01发送url(只显视频):i:5ji:0mc16:">发送url(只显视频):i:5ji:0mc16:</a></p>
<p><a href="i:01发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:">发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:</a></p>
<p>以下需安装相应的<a href="../html5/index.html#">html5应用</a>至匹配的目录:</p>
<p><a href="i:01大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=">大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=</a></p>
<p><a href="i:01markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=">markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=</a></p>
<p><a href="i:01plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=">plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=</a></p>
<p><a href="i:01dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=">dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=</a></p>
<p><a href="i:01pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=">pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=</a></p>
<p><a href="i:01epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=">epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=</a></p>
-
-
配置浏览器常用命令
https://jamesfengcao.gitlab.io/uweb/zh/cmds/
diff --git a/zh/urls/index.html b/zh/urls/index.html
index a65da002..97192064 100644
--- a/zh/urls/index.html
+++ b/zh/urls/index.html
@@ -48,75 +48,76 @@
- 超微浏览器下点击配置链接可自动添加特色服务,强制清空后台重启后长按图像按钮可用。
+ 超微浏览器下点击配置链接可自动添加特色服务,强制清空后台重启后长按图像按钮可用。
+特色服务中的url支持"%u","%t"等替换。1144以下版本需删除末尾的"%u"。
配置文件"default.urls"如下:
-
-
-
-
-
-
-
-
-
-
-
-tgurl:https://tx.me/share/url?url=
-tgdownload:https://tx.me/share/url?url=../../download
-
-历史价格:http://www.hisprice.cn/his.php?hisurl=
-历史价格2:http://p.zwjhl.com/price.aspx?url=
-慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=
-过客比价:http://www.tool168.cn/?m=history&a=view&k=
-历史价格3:http://www.xitie.com/s.php?no=
-买买买:https://just998.com/price?url=
-
-有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=
-搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=
-papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=
-google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=
-
-
-outline:https://www.outline.com/
-2pdf:https://www.web2pdfconvert.com#
-printfriendly:https://www.printfriendly.com/print/?url=
-htmlview:https://htmlview.glitch.me/?
-htmlpreview:https://htmlpreview.github.io/?
-webarchive:https://web.archive.org/web/*/
-archive:https://archive.is/?run=1&url=
-Add to Feedly:https://feedly.com/i/subscription/feed/
-Site analyzer:https://www.similarweb.com/website/
-Site buildwith:https://builtwith.com/?
-instapaper:https://www.instapaper.com/text?u=
-xdocin:https://view.xdocin.com/view?src=
-google docs:http://docs.google.com/gview?embedded=true&url=
+
+
+
+
+
+
+
+
+
+
+
+tgurl:https://tx.me/share/url?url=%u
+tgdownload:https://tx.me/share/url?url=../../download %u
+
+历史价格:http://www.hisprice.cn/his.php?hisurl=%u
+历史价格2:http://p.zwjhl.com/price.aspx?url=%u
+慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u
+过客比价:http://www.tool168.cn/?m=history&a=view&k=%u
+历史价格3:http://www.xitie.com/s.php?no=%u
+买买买:https://just998.com/price?url=%u
+
+有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u
+搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u
+papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u
+google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u
+
+
+outline:https://www.outline.com/%u
+2pdf:https://www.web2pdfconvert.com#%u
+printfriendly:https://www.printfriendly.com/print/?url=%u
+htmlview:https://htmlview.glitch.me/?%u
+htmlpreview:https://htmlpreview.github.io/?%u
+webarchive:https://web.archive.org/web/*/%u
+archive:https://archive.is/?run=1&url=%u
+Add to Feedly:https://feedly.com/i/subscription/feed/%u
+Site analyzer:https://www.similarweb.com/website/%u
+Site buildwith:https://builtwith.com/?%u
+instapaper:https://www.instapaper.com/text?u=%u
+xdocin:https://view.xdocin.com/view?src=%u
+google docs:http://docs.google.com/gview?embedded=true&url=%u
其中"重定向"由文件default.redirect配置,对"file://"重定向将调用合适编辑器编辑文件。
适合向TV端发送:(TV端需先执行“等待接收...”)
-发送url/file:i:5j
-
-
-
-
-发送url(书签全屏):i:5ji:52../home5:i:5f
-
-
-发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:
+发送url/file:i:5j%u
+
+
+
+
+发送url(书签全屏):i:5ji:52../home5:i:5f%u
+
+
+发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u
以下需安装相应的html5应用至匹配的目录:
-大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=
-markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=
-plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=
-dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=
-pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=
-epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=
-djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=
+大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u
+markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u
+plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u
+dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u
+pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=%u
+epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=%u
+djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=%u
视频解析 (UA为PC时无广告):
-isyou:https://video.isyour.love/Search/SearchName/
+isyou:https://video.isyour.love/Search/SearchName/%u
更多视频服务见:
解析2
-Last Modified: 8 April 2025
-fix broken links
+
Last Modified: 30 December 2025
+urls.py to support enhanced default.urls
From 98d515de6028119816cc50e328b2f4074b486702 Mon Sep 17 00:00:00 2001
From: James Feng Cao
Date: Wed, 31 Dec 2025 09:14:27 +0800
Subject: [PATCH 225/254] enhance url services with %u etc.
---
en/index.xml | 4 +-
en/sitemap.xml | 6 +--
en/topposts/index.xml | 4 +-
en/urls/index.html | 100 +++++++++++++++++------------------
sitemap.xml | 4 +-
zh/index.xml | 4 +-
zh/sitemap.xml | 6 +--
zh/topposts/index.xml | 4 +-
zh/urls/index.html | 118 +++++++++++++++++++++---------------------
9 files changed, 125 insertions(+), 125 deletions(-)
diff --git a/en/index.xml b/en/index.xml
index b0d79b05..d0412c1a 100644
--- a/en/index.xml
+++ b/en/index.xml
@@ -6,14 +6,14 @@
Recent content on uweb browser: unlimited power
Hugo
en
- Tue, 30 Dec 2025 23:10:52 +0800
+ Wed, 31 Dec 2025 09:13:28 +0800
-
Url services
https://jamesfengcao.gitlab.io/uweb/en/urls/
Tue, 30 Dec 2025 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/urls/
- <p>With uweb version 1144+, urls in configure file <code>default.urls</code> now support <a href="../cmds/index.html#">"%u","%t" etc.</a>. For lower versions, please remove the ending "%u" in each line.</p>
<p>Click the following links to install url services with <a href="../index.html#">uweb browser</a> or <a href="../ebrowserreadme/index.html#">ebrowser</a>. <b>Force exit and re-launch the app</b>, then long press the "image" button to popup the menu.</p>
<p><a href="i:01Fullscreen video:i:5f%25u">Fullscreen video:i:5f%u</a></p>
<p><a href="i:01Redirect/edit:e:%25u">Redirect/edit:e:%u</a></p>
<p><a href="i:01Save2autocomplete:i:51:%25u">Save2autocomplete:i:51:%u</a></p>
<p><a href="i:01Bookmark:i:52:%25u">Bookmark:i:52:%u</a></p>
<p><a href="i:01Note:i:53:%25u">Note:i:53:%u</a></p>
<p><a href="i:01Save engine:i:54:%25u">Save engine:i:54:%u</a></p>
<p><a href="i:01Save link:i:55:%25u">Save link:i:55:%u</a></p>
<p><a href="i:01Save to desktop:i:58%25u">Save to desktop:i:58%u</a></p>
<p><a href="i:01markdownview:i:0m-/js/mdview.html:%25u">markdownview:i:0m-/js/mdview.html:%u</a></p>
<p><a href="i:01Reader:i:0/js/reader.html:%25u">Reader:i:0/js/reader.html:%u</a></p>
+ <p>With uweb version 1144+, urls in configure file <code>default.urls</code> now support <a href="../cmds/index.html#">"%u","%t" etc.</a>. For lower versions, please remove the ending "%u" in each line.</p>
<p>Click the following links to install url services with <a href="../index.html#">uweb browser</a> or <a href="../ebrowserreadme/index.html#">ebrowser</a>. <b>Force exit and re-launch the app</b>, then long press the "image" button to popup the menu.</p>
<p><a href="i:01Fullscreen video:i:5f%u">Fullscreen video:i:5f%u</a></p>
<p><a href="i:01Redirect/edit:e:%u">Redirect/edit:e:%u</a></p>
<p><a href="i:01Save2autocomplete:i:51:%u">Save2autocomplete:i:51:%u</a></p>
<p><a href="i:01Bookmark:i:52:%u">Bookmark:i:52:%u</a></p>
<p><a href="i:01Note:i:53:%u">Note:i:53:%u</a></p>
<p><a href="i:01Save engine:i:54:%u">Save engine:i:54:%u</a></p>
<p><a href="i:01Save link:i:55:%u">Save link:i:55:%u</a></p>
<p><a href="i:01Save to desktop:i:58%u">Save to desktop:i:58%u</a></p>
<p><a href="i:01markdownview:i:0m-/js/viewmd.html:%u">markdownview:i:0m-/js/viewmd.html:%u</a></p>
<p><a href="i:01Reader:i:0/js/reader.html:%u">Reader:i:0/js/reader.html:%u</a></p>
-
File manager
diff --git a/en/sitemap.xml b/en/sitemap.xml
index 92f94e21..16de1d5d 100644
--- a/en/sitemap.xml
+++ b/en/sitemap.xml
@@ -3,7 +3,7 @@
xmlns:xhtml="http://www.w3.org/1999/xhtml">
https://jamesfengcao.gitlab.io/uweb/en/topposts/
- 2025-12-30T23:10:52+08:00
+ 2025-12-31T09:13:28+08:00
https://jamesfengcao.gitlab.io/uweb/en/urls/
- 2025-12-30T23:10:52+08:00
+ 2025-12-31T09:13:28+08:00
https://jamesfengcao.gitlab.io/uweb/en/
- 2025-12-30T23:10:52+08:00
+ 2025-12-31T09:13:28+08:00
Recent content in Topposts on uweb browser: unlimited power
Hugo
en
- Tue, 30 Dec 2025 23:10:52 +0800
+ Wed, 31 Dec 2025 09:13:28 +0800
-
Url services
https://jamesfengcao.gitlab.io/uweb/en/urls/
Tue, 30 Dec 2025 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/urls/
- <p>With uweb version 1144+, urls in configure file <code>default.urls</code> now support <a href="../cmds/index.html#">"%u","%t" etc.</a>. For lower versions, please remove the ending "%u" in each line.</p>
<p>Click the following links to install url services with <a href="../index.html#">uweb browser</a> or <a href="../ebrowserreadme/index.html#">ebrowser</a>. <b>Force exit and re-launch the app</b>, then long press the "image" button to popup the menu.</p>
<p><a href="i:01Fullscreen video:i:5f%25u">Fullscreen video:i:5f%u</a></p>
<p><a href="i:01Redirect/edit:e:%25u">Redirect/edit:e:%u</a></p>
<p><a href="i:01Save2autocomplete:i:51:%25u">Save2autocomplete:i:51:%u</a></p>
<p><a href="i:01Bookmark:i:52:%25u">Bookmark:i:52:%u</a></p>
<p><a href="i:01Note:i:53:%25u">Note:i:53:%u</a></p>
<p><a href="i:01Save engine:i:54:%25u">Save engine:i:54:%u</a></p>
<p><a href="i:01Save link:i:55:%25u">Save link:i:55:%u</a></p>
<p><a href="i:01Save to desktop:i:58%25u">Save to desktop:i:58%u</a></p>
<p><a href="i:01markdownview:i:0m-/js/mdview.html:%25u">markdownview:i:0m-/js/mdview.html:%u</a></p>
<p><a href="i:01Reader:i:0/js/reader.html:%25u">Reader:i:0/js/reader.html:%u</a></p>
+ <p>With uweb version 1144+, urls in configure file <code>default.urls</code> now support <a href="../cmds/index.html#">"%u","%t" etc.</a>. For lower versions, please remove the ending "%u" in each line.</p>
<p>Click the following links to install url services with <a href="../index.html#">uweb browser</a> or <a href="../ebrowserreadme/index.html#">ebrowser</a>. <b>Force exit and re-launch the app</b>, then long press the "image" button to popup the menu.</p>
<p><a href="i:01Fullscreen video:i:5f%u">Fullscreen video:i:5f%u</a></p>
<p><a href="i:01Redirect/edit:e:%u">Redirect/edit:e:%u</a></p>
<p><a href="i:01Save2autocomplete:i:51:%u">Save2autocomplete:i:51:%u</a></p>
<p><a href="i:01Bookmark:i:52:%u">Bookmark:i:52:%u</a></p>
<p><a href="i:01Note:i:53:%u">Note:i:53:%u</a></p>
<p><a href="i:01Save engine:i:54:%u">Save engine:i:54:%u</a></p>
<p><a href="i:01Save link:i:55:%u">Save link:i:55:%u</a></p>
<p><a href="i:01Save to desktop:i:58%u">Save to desktop:i:58%u</a></p>
<p><a href="i:01markdownview:i:0m-/js/viewmd.html:%u">markdownview:i:0m-/js/viewmd.html:%u</a></p>
<p><a href="i:01Reader:i:0/js/reader.html:%u">Reader:i:0/js/reader.html:%u</a></p>
-
Search engine query URLs
diff --git a/en/urls/index.html b/en/urls/index.html
index fa9d43c0..c2669fbb 100644
--- a/en/urls/index.html
+++ b/en/urls/index.html
@@ -50,61 +50,61 @@
With uweb version 1144+, urls in configure file default.urls now support "%u","%t" etc.. For lower versions, please remove the ending "%u" in each line.
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.
-
-
-
-
-
-
-
-
-markdownview:i:0m-/js/mdview.html:%u
-
-
-Extract web app:i:0bsitecache/local/:%u
-tgurl:https://tx.me/share/url?url=%u
-tgdownload:https://tx.me/share/url?url=../../download %u
-
-papago:https://papago.naver.net/website?locale=en&target=en&url=%u
-google translate:https://translate.google.com/translate?sl=auto&tl=en&u=%u
-
-outline:https://www.outline.com/%u
-2pdf:https://www.web2pdfconvert.com#%u
-printfriendly:https://www.printfriendly.com/print/?url=%u
-htmlview:https://htmlview.glitch.me/?%u
-htmlpreview:https://htmlpreview.github.io/?%u
-webarchive:https://web.archive.org/web/*/%u
-archive:https://archive.is/?run=1&url=%u
-googlecache:http://webcache.googleusercontent.com/search?q=cache:%u
-Add to Feedly:https://feedly.com/i/subscription/feed/%u
-Site analyzer:https://www.similarweb.com/website/%u
-Site buildwith:https://builtwith.com/?%u
-instapaper:https://www.instapaper.com/text?u=%u
-google docs:http://docs.google.com/gview?embedded=true&url=%u
+
+
+
+
+
+
+
+
+markdownview:i:0m-/js/viewmd.html:%u
+
+
+Extract web app:i:0bsitecache/local/:%u
+tgurl:https://tx.me/share/url?url=%u
+tgdownload:https://tx.me/share/url?url=../../download %u
+
+papago:https://papago.naver.net/website?locale=en&target=en&url=%u
+google translate:https://translate.google.com/translate?sl=auto&tl=en&u=%u
+
+outline:https://www.outline.com/%u
+2pdf:https://www.web2pdfconvert.com#%u
+printfriendly:https://www.printfriendly.com/print/?url=%u
+htmlview:https://htmlview.glitch.me/?%u
+htmlpreview:https://htmlpreview.github.io/?%u
+webarchive:https://web.archive.org/web/*/%u
+archive:https://archive.is/?run=1&url=%u
+googlecache:http://webcache.googleusercontent.com/search?q=cache:%u
+Add to Feedly:https://feedly.com/i/subscription/feed/%u
+Site analyzer:https://www.similarweb.com/website/%u
+Site buildwith:https://builtwith.com/?%u
+instapaper:https://www.instapaper.com/text?u=%u
+google docs:http://docs.google.com/gview?embedded=true&url=%u
in which "redirect" needs default.redirect.
The following is mostly useful to send msg to TV (TV side needs to execute "wait for msg" first):
-
-
-Send url(bookmark):i:5ji:52../home5:%u
-Send url(clipboard):i:5ji:5b%u
-Send url(fullscreen):i:5ji:5f%u
-Send url(bookmark fullscreen):i:5ji:52../home5:i:5f%u
-Send url(site fullscreen):i:5ji:0mi:5f:%u
-Send url(video):i:5ji:0mc16:%u
-Send url(bookmark site fullscreen):i:5ji:52../home5:i:0mi:5f:%u
+
+
+Send url(bookmark):i:5ji:52../home5:%u
+Send url(clipboard):i:5ji:5b%u
+Send url(fullscreen):i:5ji:5f%u
+Send url(bookmark fullscreen):i:5ji:52../home5:i:5f%u
+Send url(site fullscreen):i:5ji:0mi:5f:%u
+Send url(video):i:5ji:0mc16:%u
+Send url(bookmark site fullscreen):i:5ji:52../home5:i:0mi:5f:%u
The following needs corresponding html5 application to be installed:
-txtview:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u
-md+katex:file:///data/user/0/info.torapp.uweb/files/app/mdkatex.html?url=%u
-markdeep:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u
-plyr:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u
-dplayer:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u
-pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=%u
-epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=%u
-djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=%u
+txtview:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u
+md+katex:file:///data/user/0/info.torapp.uweb/files/app/mdkatex.html?url=%u
+markdeep:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u
+plyr:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u
+dplayer:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u
+pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=%u
+epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=%u
+djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=%u
-Last Modified: 30 December 2025
-urls.py to support enhanced default.urls
+
Last Modified: 31 December 2025
+urls.py: support %u
diff --git a/sitemap.xml b/sitemap.xml
index ffb5daef..99730b18 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,14 +4,14 @@
https://jamesfengcao.gitlab.io/uweb/en/sitemap.xml
- 2025-12-30T23:10:52+08:00
+ 2025-12-31T09:13:28+08:00
https://jamesfengcao.gitlab.io/uweb/zh/sitemap.xml
- 2025-12-30T22:47:23+08:00
+ 2025-12-31T09:13:36+08:00
diff --git a/zh/index.xml b/zh/index.xml
index a0f8aedb..e15d8d50 100644
--- a/zh/index.xml
+++ b/zh/index.xml
@@ -6,14 +6,14 @@
Recent content on 超微浏览器: 威、快、高效、极致优化
Hugo
zh
- Tue, 30 Dec 2025 22:47:23 +0800
+ Wed, 31 Dec 2025 09:13:36 +0800
-
配置浏览器特色服务
https://jamesfengcao.gitlab.io/uweb/zh/urls/
Tue, 30 Dec 2025 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/zh/urls/
- <p><a href="../index.html#">超微浏览器</a>下点击配置链接可自动添加特色服务,<b>强制清空后台重启后</b>长按图像按钮可用。<br>
特色服务中的url支持<a href="../cmds/index.html#">"%u","%t"等替换</a>。1144以下版本需删除末尾的"%u"。</p>
<p>配置文件"default.urls"如下:</p>
<p><a href="i:01自动全屏播放:i:5f%25u">自动全屏播放:i:5f%u</a></p>
<p><a href="i:01重定向/编辑:e:%25u">重定向/编辑:e:%u</a></p>
<p><a href="i:01保存地址栏提示:i:51:%25u">保存地址栏提示:i:51:%u</a></p>
<p><a href="i:01书签:i:52:%25u">书签:i:52:%u</a></p>
<p><a href="i:01笔记:i:53:%25u">笔记:i:53:%u</a></p>
<p><a href="i:01保存为搜索引擎:i:54:%25u">保存为搜索引擎:i:54:%u</a></p>
<p><a href="i:01添加至链接:i:55:%25u">添加至链接:i:55:%u</a></p>
<p><a href="i:01保存到桌面:i:58%25u">保存到桌面:i:58%u</a></p>
<p><a href="i:01中文简体GB18030:i:5hGB18030:%25u">中文简体GB18030:i:5hGB18030:%u</a></p>
<p><a href="i:01中文繁体BIG5:i:5hBIG5:%25u">中文繁体BIG5:i:5hBIG5:%u</a></p>
<p><a href="i:01媒体扫描单文件::001%25u">媒体扫描单文件::001%u</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=%25u">tgurl:https://tx.me/share/url?url=%u</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../download %25u">tgdownload:https://tx.me/share/url?url=../download %u</a></p>
<p><a href="i:01兼容模式:i:5d%25u">兼容模式:i:5d%u</a></p>
<p><a href="i:01历史价格:http://www.hisprice.cn/his.php?hisurl=%25u">历史价格:http://www.hisprice.cn/his.php?hisurl=%u</a></p>
<p><a href="i:01历史价格2:http://p.zwjhl.com/price.aspx?url=%25u">历史价格2:http://p.zwjhl.com/price.aspx?url=%u</a></p>
<p><a href="i:01慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%25u">慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u</a></p>
<p><a href="i:01过客比价:http://www.tool168.cn/?m=history&a=view&k=%25u">过客比价:http://www.tool168.cn/?m=history&a=view&k=%u</a></p>
<p><a href="i:01历史价格3:http://www.xitie.com/s.php?no=%25u">历史价格3:http://www.xitie.com/s.php?no=%u</a></p>
<p><a href="i:01买买买:https://just998.com/price?url=%25u">买买买:https://just998.com/price?url=%u</a></p>
<p><a href="i:01网页快照:https://his.sh/%25u">网页快照:https://his.sh/%u</a></p>
<p><a href="i:01有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%25u">有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u</a></p>
<p><a href="i:01搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%25u">搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u</a></p>
<p><a href="i:01papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%25u">papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u</a></p>
<p><a href="i:01google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%25u">google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u</a></p>
<p><a href="i:01网址工具:https://wn.run/%25u">网址工具:https://wn.run/%u</a></p>
<p><a href="i:01查看源码:view-source:%25u">查看源码:view-source:%u</a></p>
<p><a href="i:01outline:https://www.outline.com/%25u">outline:https://www.outline.com/%u</a></p>
<p><a href="i:012pdf:https://www.web2pdfconvert.com#%25u">2pdf:https://www.web2pdfconvert.com#%u</a></p>
<p><a href="i:01printfriendly:https://www.printfriendly.com/print/?url=%25u">printfriendly:https://www.printfriendly.com/print/?url=%u</a></p>
<p><a href="i:01htmlview:https://htmlview.glitch.me/?%25u">htmlview:https://htmlview.glitch.me/?%u</a></p>
<p><a href="i:01htmlpreview:https://htmlpreview.github.io/?%25u">htmlpreview:https://htmlpreview.github.io/?%u</a></p>
<p><a href="i:01webarchive:https://web.archive.org/web/*/%25u">webarchive:https://web.archive.org/web/*/%u</a></p>
<p><a href="i:01archive:https://archive.is/?run=1&url=%25u">archive:https://archive.is/?run=1&url=%u</a></p>
<p><a href="i:01Add to Feedly:https://feedly.com/i/subscription/feed/%25u">Add to Feedly:https://feedly.com/i/subscription/feed/%u</a></p>
<p><a href="i:01Site analyzer:https://www.similarweb.com/website/%25u">Site analyzer:https://www.similarweb.com/website/%u</a></p>
<p><a href="i:01Site buildwith:https://builtwith.com/?%25u">Site buildwith:https://builtwith.com/?%u</a></p>
<p><a href="i:01instapaper:https://www.instapaper.com/text?u=%25u">instapaper:https://www.instapaper.com/text?u=%u</a></p>
<p><a href="i:01xdocin:https://view.xdocin.com/view?src=%25u">xdocin:https://view.xdocin.com/view?src=%u</a></p>
<p><a href="i:01google docs:http://docs.google.com/gview?embedded=true&url=%25u">google docs:http://docs.google.com/gview?embedded=true&url=%u</a></p>
<p>其中"重定向"由<a href="../redirect/index.html#">文件default.redirect配置</a>,对"file://"重定向将调用合适编辑器编辑文件。</p>
<p>适合向TV端发送:(TV端需先执行“等待接收...”)<br>
<a href="i:01发送url/file:i:5j%25u">发送url/file:i:5j%u</a></p>
<p><a href="i:01发送url(播放器):i:5ji:5p%25u">发送url(播放器):i:5ji:5p%u</a></p>
<p><a href="i:01发送url(书签):i:5ji:52../home5:%25u">发送url(书签):i:5ji:52../home5:%u</a></p>
<p><a href="i:01发送url(剪贴板):i:5ji:5b%25u">发送url(剪贴板):i:5ji:5b%u</a></p>
<p><a href="i:01发送url(全屏播放):i:5ji:5f%25u">发送url(全屏播放):i:5ji:5f%u</a></p>
<p><a href="i:01发送url(书签全屏):i:5ji:52../home5:i:5f%25u">发送url(书签全屏):i:5ji:52../home5:i:5f%u</a></p>
<p><a href="i:01发送url(整网全屏):i:5ji:0mi:5f:%25u">发送url(整网全屏):i:5ji:0mi:5f:%u</a></p>
<p><a href="i:01发送url(只显视频):i:5ji:0mc16:%25u">发送url(只显视频):i:5ji:0mc16:%u</a></p>
<p><a href="i:01发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%25u">发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u</a></p>
<p>以下需安装相应的<a href="../html5/index.html#">html5应用</a>至匹配的目录:</p>
<p><a href="i:01大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%25u">大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u</a></p>
<p><a href="i:01markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%25u">markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u</a></p>
<p><a href="i:01plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%25u">plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u</a></p>
<p><a href="i:01dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%25u">dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u</a></p>
+ <p><a href="../index.html#">超微浏览器</a>下点击配置链接可自动添加特色服务,<b>强制清空后台重启后</b>长按图像按钮可用。<br>
特色服务中的url支持<a href="../cmds/index.html#">"%u","%t"等替换</a>。1144以下版本需删除末尾的"%u"。</p>
<p>配置文件"default.urls"如下:</p>
<p><a href="i:01自动全屏播放:i:5f%u">自动全屏播放:i:5f%u</a></p>
<p><a href="i:01重定向/编辑:e:%u">重定向/编辑:e:%u</a></p>
<p><a href="i:01保存地址栏提示:i:51:%u">保存地址栏提示:i:51:%u</a></p>
<p><a href="i:01书签:i:52:%u">书签:i:52:%u</a></p>
<p><a href="i:01笔记:i:53:%u">笔记:i:53:%u</a></p>
<p><a href="i:01保存为搜索引擎:i:54:%u">保存为搜索引擎:i:54:%u</a></p>
<p><a href="i:01添加至链接:i:55:%u">添加至链接:i:55:%u</a></p>
<p><a href="i:01保存到桌面:i:58%u">保存到桌面:i:58%u</a></p>
<p><a href="i:01中文简体GB18030:i:5hGB18030:%u">中文简体GB18030:i:5hGB18030:%u</a></p>
<p><a href="i:01中文繁体BIG5:i:5hBIG5:%u">中文繁体BIG5:i:5hBIG5:%u</a></p>
<p><a href="i:01媒体扫描单文件::001%u">媒体扫描单文件::001%u</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=%u">tgurl:https://tx.me/share/url?url=%u</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../download %u">tgdownload:https://tx.me/share/url?url=../download %u</a></p>
<p><a href="i:01兼容模式:i:5d%u">兼容模式:i:5d%u</a></p>
<p><a href="i:01历史价格:http://www.hisprice.cn/his.php?hisurl=%u">历史价格:http://www.hisprice.cn/his.php?hisurl=%u</a></p>
<p><a href="i:01历史价格2:http://p.zwjhl.com/price.aspx?url=%u">历史价格2:http://p.zwjhl.com/price.aspx?url=%u</a></p>
<p><a href="i:01慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u">慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u</a></p>
<p><a href="i:01过客比价:http://www.tool168.cn/?m=history&a=view&k=%u">过客比价:http://www.tool168.cn/?m=history&a=view&k=%u</a></p>
<p><a href="i:01历史价格3:http://www.xitie.com/s.php?no=%u">历史价格3:http://www.xitie.com/s.php?no=%u</a></p>
<p><a href="i:01买买买:https://just998.com/price?url=%u">买买买:https://just998.com/price?url=%u</a></p>
<p><a href="i:01网页快照:https://his.sh/%u">网页快照:https://his.sh/%u</a></p>
<p><a href="i:01有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u">有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u</a></p>
<p><a href="i:01搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u">搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u</a></p>
<p><a href="i:01papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u">papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u</a></p>
<p><a href="i:01google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u">google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u</a></p>
<p><a href="i:01网址工具:https://wn.run/%u">网址工具:https://wn.run/%u</a></p>
<p><a href="i:01查看源码:view-source:%u">查看源码:view-source:%u</a></p>
<p><a href="i:01outline:https://www.outline.com/%u">outline:https://www.outline.com/%u</a></p>
<p><a href="i:012pdf:https://www.web2pdfconvert.com#%u">2pdf:https://www.web2pdfconvert.com#%u</a></p>
<p><a href="i:01printfriendly:https://www.printfriendly.com/print/?url=%u">printfriendly:https://www.printfriendly.com/print/?url=%u</a></p>
<p><a href="i:01htmlview:https://htmlview.glitch.me/?%u">htmlview:https://htmlview.glitch.me/?%u</a></p>
<p><a href="i:01htmlpreview:https://htmlpreview.github.io/?%u">htmlpreview:https://htmlpreview.github.io/?%u</a></p>
<p><a href="i:01webarchive:https://web.archive.org/web/*/%u">webarchive:https://web.archive.org/web/*/%u</a></p>
<p><a href="i:01archive:https://archive.is/?run=1&url=%u">archive:https://archive.is/?run=1&url=%u</a></p>
<p><a href="i:01Add to Feedly:https://feedly.com/i/subscription/feed/%u">Add to Feedly:https://feedly.com/i/subscription/feed/%u</a></p>
<p><a href="i:01Site analyzer:https://www.similarweb.com/website/%u">Site analyzer:https://www.similarweb.com/website/%u</a></p>
<p><a href="i:01Site buildwith:https://builtwith.com/?%u">Site buildwith:https://builtwith.com/?%u</a></p>
<p><a href="i:01instapaper:https://www.instapaper.com/text?u=%u">instapaper:https://www.instapaper.com/text?u=%u</a></p>
<p><a href="i:01xdocin:https://view.xdocin.com/view?src=%u">xdocin:https://view.xdocin.com/view?src=%u</a></p>
<p><a href="i:01google docs:http://docs.google.com/gview?embedded=true&url=%u">google docs:http://docs.google.com/gview?embedded=true&url=%u</a></p>
<p>其中"重定向"由<a href="../redirect/index.html#">文件default.redirect配置</a>,对"file://"重定向将调用合适编辑器编辑文件。</p>
<p>适合向TV端发送:(TV端需先执行“等待接收...”)<br>
<a href="i:01发送url/file:i:5j%u">发送url/file:i:5j%u</a></p>
<p><a href="i:01发送url(播放器):i:5ji:5p%u">发送url(播放器):i:5ji:5p%u</a></p>
<p><a href="i:01发送url(书签):i:5ji:52../home5:%u">发送url(书签):i:5ji:52../home5:%u</a></p>
<p><a href="i:01发送url(剪贴板):i:5ji:5b%u">发送url(剪贴板):i:5ji:5b%u</a></p>
<p><a href="i:01发送url(全屏播放):i:5ji:5f%u">发送url(全屏播放):i:5ji:5f%u</a></p>
<p><a href="i:01发送url(书签全屏):i:5ji:52../home5:i:5f%u">发送url(书签全屏):i:5ji:52../home5:i:5f%u</a></p>
<p><a href="i:01发送url(整网全屏):i:5ji:0mi:5f:%u">发送url(整网全屏):i:5ji:0mi:5f:%u</a></p>
<p><a href="i:01发送url(只显视频):i:5ji:0mc16:%u">发送url(只显视频):i:5ji:0mc16:%u</a></p>
<p><a href="i:01发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u">发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u</a></p>
<p>以下需安装相应的<a href="../html5/index.html#">html5应用</a>至匹配的目录:</p>
<p><a href="i:01大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u">大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u</a></p>
<p><a href="i:01markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u">markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u</a></p>
<p><a href="i:01plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u">plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u</a></p>
<p><a href="i:01dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u">dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u</a></p>
-
常用语及输入法辅佐
diff --git a/zh/sitemap.xml b/zh/sitemap.xml
index 8fccc48c..c705841b 100644
--- a/zh/sitemap.xml
+++ b/zh/sitemap.xml
@@ -3,7 +3,7 @@
xmlns:xhtml="http://www.w3.org/1999/xhtml">
https://jamesfengcao.gitlab.io/uweb/zh/topposts/
- 2025-12-30T22:47:23+08:00
+ 2025-12-31T09:13:36+08:00
https://jamesfengcao.gitlab.io/uweb/zh/
- 2025-12-30T22:47:23+08:00
+ 2025-12-31T09:13:36+08:00
https://jamesfengcao.gitlab.io/uweb/zh/urls/
- 2025-12-30T22:47:23+08:00
+ 2025-12-31T09:13:36+08:00
Recent content in Topposts on 超微浏览器: 威、快、高效、极致优化
Hugo
zh
- Tue, 30 Dec 2025 22:47:23 +0800
+ Wed, 31 Dec 2025 09:13:36 +0800
-
配置浏览器特色服务
https://jamesfengcao.gitlab.io/uweb/zh/urls/
Tue, 30 Dec 2025 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/zh/urls/
- <p><a href="../index.html#">超微浏览器</a>下点击配置链接可自动添加特色服务,<b>强制清空后台重启后</b>长按图像按钮可用。<br>
特色服务中的url支持<a href="../cmds/index.html#">"%u","%t"等替换</a>。1144以下版本需删除末尾的"%u"。</p>
<p>配置文件"default.urls"如下:</p>
<p><a href="i:01自动全屏播放:i:5f%25u">自动全屏播放:i:5f%u</a></p>
<p><a href="i:01重定向/编辑:e:%25u">重定向/编辑:e:%u</a></p>
<p><a href="i:01保存地址栏提示:i:51:%25u">保存地址栏提示:i:51:%u</a></p>
<p><a href="i:01书签:i:52:%25u">书签:i:52:%u</a></p>
<p><a href="i:01笔记:i:53:%25u">笔记:i:53:%u</a></p>
<p><a href="i:01保存为搜索引擎:i:54:%25u">保存为搜索引擎:i:54:%u</a></p>
<p><a href="i:01添加至链接:i:55:%25u">添加至链接:i:55:%u</a></p>
<p><a href="i:01保存到桌面:i:58%25u">保存到桌面:i:58%u</a></p>
<p><a href="i:01中文简体GB18030:i:5hGB18030:%25u">中文简体GB18030:i:5hGB18030:%u</a></p>
<p><a href="i:01中文繁体BIG5:i:5hBIG5:%25u">中文繁体BIG5:i:5hBIG5:%u</a></p>
<p><a href="i:01媒体扫描单文件::001%25u">媒体扫描单文件::001%u</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=%25u">tgurl:https://tx.me/share/url?url=%u</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../../download %25u">tgdownload:https://tx.me/share/url?url=../../download %u</a></p>
<p><a href="i:01兼容模式:i:5d%25u">兼容模式:i:5d%u</a></p>
<p><a href="i:01历史价格:http://www.hisprice.cn/his.php?hisurl=%25u">历史价格:http://www.hisprice.cn/his.php?hisurl=%u</a></p>
<p><a href="i:01历史价格2:http://p.zwjhl.com/price.aspx?url=%25u">历史价格2:http://p.zwjhl.com/price.aspx?url=%u</a></p>
<p><a href="i:01慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%25u">慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u</a></p>
<p><a href="i:01过客比价:http://www.tool168.cn/?m=history&a=view&k=%25u">过客比价:http://www.tool168.cn/?m=history&a=view&k=%u</a></p>
<p><a href="i:01历史价格3:http://www.xitie.com/s.php?no=%25u">历史价格3:http://www.xitie.com/s.php?no=%u</a></p>
<p><a href="i:01买买买:https://just998.com/price?url=%25u">买买买:https://just998.com/price?url=%u</a></p>
<p><a href="i:01网页快照:https://his.sh/%25u">网页快照:https://his.sh/%u</a></p>
<p><a href="i:01有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%25u">有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u</a></p>
<p><a href="i:01搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%25u">搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u</a></p>
<p><a href="i:01papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%25u">papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u</a></p>
<p><a href="i:01google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%25u">google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u</a></p>
<p><a href="i:01网址工具:https://wn.run/%25u">网址工具:https://wn.run/%u</a></p>
<p><a href="i:01查看源码:view-source:%25u">查看源码:view-source:%u</a></p>
<p><a href="i:01outline:https://www.outline.com/%25u">outline:https://www.outline.com/%u</a></p>
<p><a href="i:012pdf:https://www.web2pdfconvert.com#%25u">2pdf:https://www.web2pdfconvert.com#%u</a></p>
<p><a href="i:01printfriendly:https://www.printfriendly.com/print/?url=%25u">printfriendly:https://www.printfriendly.com/print/?url=%u</a></p>
<p><a href="i:01htmlview:https://htmlview.glitch.me/?%25u">htmlview:https://htmlview.glitch.me/?%u</a></p>
<p><a href="i:01htmlpreview:https://htmlpreview.github.io/?%25u">htmlpreview:https://htmlpreview.github.io/?%u</a></p>
<p><a href="i:01webarchive:https://web.archive.org/web/*/%25u">webarchive:https://web.archive.org/web/*/%u</a></p>
<p><a href="i:01archive:https://archive.is/?run=1&url=%25u">archive:https://archive.is/?run=1&url=%u</a></p>
<p><a href="i:01Add to Feedly:https://feedly.com/i/subscription/feed/%25u">Add to Feedly:https://feedly.com/i/subscription/feed/%u</a></p>
<p><a href="i:01Site analyzer:https://www.similarweb.com/website/%25u">Site analyzer:https://www.similarweb.com/website/%u</a></p>
<p><a href="i:01Site buildwith:https://builtwith.com/?%25u">Site buildwith:https://builtwith.com/?%u</a></p>
<p><a href="i:01instapaper:https://www.instapaper.com/text?u=%25u">instapaper:https://www.instapaper.com/text?u=%u</a></p>
<p><a href="i:01xdocin:https://view.xdocin.com/view?src=%25u">xdocin:https://view.xdocin.com/view?src=%u</a></p>
<p><a href="i:01google docs:http://docs.google.com/gview?embedded=true&url=%25u">google docs:http://docs.google.com/gview?embedded=true&url=%u</a></p>
<p>其中"重定向"由<a href="../redirect/index.html#">文件default.redirect配置</a>,对"file://"重定向将调用合适编辑器编辑文件。</p>
<p>适合向TV端发送:(TV端需先执行“等待接收...”)<br>
<a href="i:01发送url/file:i:5j%25u">发送url/file:i:5j%u</a></p>
<p><a href="i:01发送url(播放器):i:5ji:5p%25u">发送url(播放器):i:5ji:5p%u</a></p>
<p><a href="i:01发送url(书签):i:5ji:52../home5:%25u">发送url(书签):i:5ji:52../home5:%u</a></p>
<p><a href="i:01发送url(剪贴板):i:5ji:5b%25u">发送url(剪贴板):i:5ji:5b%u</a></p>
<p><a href="i:01发送url(全屏播放):i:5ji:5f%25u">发送url(全屏播放):i:5ji:5f%u</a></p>
<p><a href="i:01发送url(书签全屏):i:5ji:52../home5:i:5f%25u">发送url(书签全屏):i:5ji:52../home5:i:5f%u</a></p>
<p><a href="i:01发送url(整网全屏):i:5ji:0mi:5f:%25u">发送url(整网全屏):i:5ji:0mi:5f:%u</a></p>
<p><a href="i:01发送url(只显视频):i:5ji:0mc16:%25u">发送url(只显视频):i:5ji:0mc16:%u</a></p>
<p><a href="i:01发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%25u">发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u</a></p>
<p>以下需安装相应的<a href="../html5/index.html#">html5应用</a>至匹配的目录:</p>
<p><a href="i:01大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%25u">大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u</a></p>
<p><a href="i:01markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%25u">markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u</a></p>
<p><a href="i:01plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%25u">plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u</a></p>
<p><a href="i:01dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%25u">dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u</a></p>
+ <p><a href="../index.html#">超微浏览器</a>下点击配置链接可自动添加特色服务,<b>强制清空后台重启后</b>长按图像按钮可用。<br>
特色服务中的url支持<a href="../cmds/index.html#">"%u","%t"等替换</a>。1144以下版本需删除末尾的"%u"。</p>
<p>配置文件"default.urls"如下:</p>
<p><a href="i:01自动全屏播放:i:5f%u">自动全屏播放:i:5f%u</a></p>
<p><a href="i:01重定向/编辑:e:%u">重定向/编辑:e:%u</a></p>
<p><a href="i:01保存地址栏提示:i:51:%u">保存地址栏提示:i:51:%u</a></p>
<p><a href="i:01书签:i:52:%u">书签:i:52:%u</a></p>
<p><a href="i:01笔记:i:53:%u">笔记:i:53:%u</a></p>
<p><a href="i:01保存为搜索引擎:i:54:%u">保存为搜索引擎:i:54:%u</a></p>
<p><a href="i:01添加至链接:i:55:%u">添加至链接:i:55:%u</a></p>
<p><a href="i:01保存到桌面:i:58%u">保存到桌面:i:58%u</a></p>
<p><a href="i:01中文简体GB18030:i:5hGB18030:%u">中文简体GB18030:i:5hGB18030:%u</a></p>
<p><a href="i:01中文繁体BIG5:i:5hBIG5:%u">中文繁体BIG5:i:5hBIG5:%u</a></p>
<p><a href="i:01媒体扫描单文件::001%u">媒体扫描单文件::001%u</a></p>
<p><a href="i:01tgurl:https://tx.me/share/url?url=%u">tgurl:https://tx.me/share/url?url=%u</a></p>
<p><a href="i:01tgdownload:https://tx.me/share/url?url=../../download %u">tgdownload:https://tx.me/share/url?url=../../download %u</a></p>
<p><a href="i:01兼容模式:i:5d%u">兼容模式:i:5d%u</a></p>
<p><a href="i:01历史价格:http://www.hisprice.cn/his.php?hisurl=%u">历史价格:http://www.hisprice.cn/his.php?hisurl=%u</a></p>
<p><a href="i:01历史价格2:http://p.zwjhl.com/price.aspx?url=%u">历史价格2:http://p.zwjhl.com/price.aspx?url=%u</a></p>
<p><a href="i:01慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u">慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u</a></p>
<p><a href="i:01过客比价:http://www.tool168.cn/?m=history&a=view&k=%u">过客比价:http://www.tool168.cn/?m=history&a=view&k=%u</a></p>
<p><a href="i:01历史价格3:http://www.xitie.com/s.php?no=%u">历史价格3:http://www.xitie.com/s.php?no=%u</a></p>
<p><a href="i:01买买买:https://just998.com/price?url=%u">买买买:https://just998.com/price?url=%u</a></p>
<p><a href="i:01网页快照:https://his.sh/%u">网页快照:https://his.sh/%u</a></p>
<p><a href="i:01有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u">有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u</a></p>
<p><a href="i:01搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u">搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u</a></p>
<p><a href="i:01papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u">papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u</a></p>
<p><a href="i:01google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u">google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u</a></p>
<p><a href="i:01网址工具:https://wn.run/%u">网址工具:https://wn.run/%u</a></p>
<p><a href="i:01查看源码:view-source:%u">查看源码:view-source:%u</a></p>
<p><a href="i:01outline:https://www.outline.com/%u">outline:https://www.outline.com/%u</a></p>
<p><a href="i:012pdf:https://www.web2pdfconvert.com#%u">2pdf:https://www.web2pdfconvert.com#%u</a></p>
<p><a href="i:01printfriendly:https://www.printfriendly.com/print/?url=%u">printfriendly:https://www.printfriendly.com/print/?url=%u</a></p>
<p><a href="i:01htmlview:https://htmlview.glitch.me/?%u">htmlview:https://htmlview.glitch.me/?%u</a></p>
<p><a href="i:01htmlpreview:https://htmlpreview.github.io/?%u">htmlpreview:https://htmlpreview.github.io/?%u</a></p>
<p><a href="i:01webarchive:https://web.archive.org/web/*/%u">webarchive:https://web.archive.org/web/*/%u</a></p>
<p><a href="i:01archive:https://archive.is/?run=1&url=%u">archive:https://archive.is/?run=1&url=%u</a></p>
<p><a href="i:01Add to Feedly:https://feedly.com/i/subscription/feed/%u">Add to Feedly:https://feedly.com/i/subscription/feed/%u</a></p>
<p><a href="i:01Site analyzer:https://www.similarweb.com/website/%u">Site analyzer:https://www.similarweb.com/website/%u</a></p>
<p><a href="i:01Site buildwith:https://builtwith.com/?%u">Site buildwith:https://builtwith.com/?%u</a></p>
<p><a href="i:01instapaper:https://www.instapaper.com/text?u=%u">instapaper:https://www.instapaper.com/text?u=%u</a></p>
<p><a href="i:01xdocin:https://view.xdocin.com/view?src=%u">xdocin:https://view.xdocin.com/view?src=%u</a></p>
<p><a href="i:01google docs:http://docs.google.com/gview?embedded=true&url=%u">google docs:http://docs.google.com/gview?embedded=true&url=%u</a></p>
<p>其中"重定向"由<a href="../redirect/index.html#">文件default.redirect配置</a>,对"file://"重定向将调用合适编辑器编辑文件。</p>
<p>适合向TV端发送:(TV端需先执行“等待接收...”)<br>
<a href="i:01发送url/file:i:5j%u">发送url/file:i:5j%u</a></p>
<p><a href="i:01发送url(播放器):i:5ji:5p%u">发送url(播放器):i:5ji:5p%u</a></p>
<p><a href="i:01发送url(书签):i:5ji:52../home5:%u">发送url(书签):i:5ji:52../home5:%u</a></p>
<p><a href="i:01发送url(剪贴板):i:5ji:5b%u">发送url(剪贴板):i:5ji:5b%u</a></p>
<p><a href="i:01发送url(全屏播放):i:5ji:5f%u">发送url(全屏播放):i:5ji:5f%u</a></p>
<p><a href="i:01发送url(书签全屏):i:5ji:52../home5:i:5f%u">发送url(书签全屏):i:5ji:52../home5:i:5f%u</a></p>
<p><a href="i:01发送url(整网全屏):i:5ji:0mi:5f:%u">发送url(整网全屏):i:5ji:0mi:5f:%u</a></p>
<p><a href="i:01发送url(只显视频):i:5ji:0mc16:%u">发送url(只显视频):i:5ji:0mc16:%u</a></p>
<p><a href="i:01发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u">发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u</a></p>
<p>以下需安装相应的<a href="../html5/index.html#">html5应用</a>至匹配的目录:</p>
<p><a href="i:01大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u">大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u</a></p>
<p><a href="i:01markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u">markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u</a></p>
<p><a href="i:01plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u">plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u</a></p>
<p><a href="i:01dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u">dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u</a></p>
-
搜索引擎搜索查询URL汇总
diff --git a/zh/urls/index.html b/zh/urls/index.html
index 97192064..47dd8b7d 100644
--- a/zh/urls/index.html
+++ b/zh/urls/index.html
@@ -51,73 +51,73 @@
超微浏览器下点击配置链接可自动添加特色服务,强制清空后台重启后长按图像按钮可用。
特色服务中的url支持"%u","%t"等替换。1144以下版本需删除末尾的"%u"。
配置文件"default.urls"如下:
-
-
-
-
-
-
-
-
-
-
-
-tgurl:https://tx.me/share/url?url=%u
-tgdownload:https://tx.me/share/url?url=../../download %u
-
-历史价格:http://www.hisprice.cn/his.php?hisurl=%u
-历史价格2:http://p.zwjhl.com/price.aspx?url=%u
-慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u
-过客比价:http://www.tool168.cn/?m=history&a=view&k=%u
-历史价格3:http://www.xitie.com/s.php?no=%u
-买买买:https://just998.com/price?url=%u
-
-有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u
-搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u
-papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u
-google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u
-
-
-outline:https://www.outline.com/%u
-2pdf:https://www.web2pdfconvert.com#%u
-printfriendly:https://www.printfriendly.com/print/?url=%u
-htmlview:https://htmlview.glitch.me/?%u
-htmlpreview:https://htmlpreview.github.io/?%u
-webarchive:https://web.archive.org/web/*/%u
-archive:https://archive.is/?run=1&url=%u
-Add to Feedly:https://feedly.com/i/subscription/feed/%u
-Site analyzer:https://www.similarweb.com/website/%u
-Site buildwith:https://builtwith.com/?%u
-instapaper:https://www.instapaper.com/text?u=%u
-xdocin:https://view.xdocin.com/view?src=%u
-google docs:http://docs.google.com/gview?embedded=true&url=%u
+
+
+
+
+
+
+
+
+
+
+
+tgurl:https://tx.me/share/url?url=%u
+tgdownload:https://tx.me/share/url?url=../../download %u
+
+历史价格:http://www.hisprice.cn/his.php?hisurl=%u
+历史价格2:http://p.zwjhl.com/price.aspx?url=%u
+慢慢买:http://tool.manmanbuy.com/historyLowest.aspx?url=%u
+过客比价:http://www.tool168.cn/?m=history&a=view&k=%u
+历史价格3:http://www.xitie.com/s.php?no=%u
+买买买:https://just998.com/price?url=%u
+
+有道翻译:http://webtrans.yodao.com/webTransPc/index.html?from=auto&to=zh-CHS&type=1&url=%u
+搜狗翻译:http://translate.sogoucdn.com/pcvtsnapshot?to=zh-CHS&tfr=translatepc&url=%u
+papago翻译:https://papago.naver.net/website?locale=en&source=en&target=zh-CN&url=%u
+google翻译:https://translate.google.com/translate?sl=auto&tl=zh&u=%u
+
+
+outline:https://www.outline.com/%u
+2pdf:https://www.web2pdfconvert.com#%u
+printfriendly:https://www.printfriendly.com/print/?url=%u
+htmlview:https://htmlview.glitch.me/?%u
+htmlpreview:https://htmlpreview.github.io/?%u
+webarchive:https://web.archive.org/web/*/%u
+archive:https://archive.is/?run=1&url=%u
+Add to Feedly:https://feedly.com/i/subscription/feed/%u
+Site analyzer:https://www.similarweb.com/website/%u
+Site buildwith:https://builtwith.com/?%u
+instapaper:https://www.instapaper.com/text?u=%u
+xdocin:https://view.xdocin.com/view?src=%u
+google docs:http://docs.google.com/gview?embedded=true&url=%u
其中"重定向"由文件default.redirect配置,对"file://"重定向将调用合适编辑器编辑文件。
适合向TV端发送:(TV端需先执行“等待接收...”)
-发送url/file:i:5j%u
-
-
-
-
-发送url(书签全屏):i:5ji:52../home5:i:5f%u
-
-
-发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u
+发送url/file:i:5j%u
+
+
+
+
+发送url(书签全屏):i:5ji:52../home5:i:5f%u
+
+
+发送url(书签整网全屏):i:5ji:52../home5:i:0mi:5f:%u
以下需安装相应的html5应用至匹配的目录:
-大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u
-markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u
-plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u
-dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u
-pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=%u
-epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=%u
-djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=%u
+大文件:file:///data/user/0/info.torapp.uweb/files/app/txtview.html?url=%u
+markdeep大文件:file:///data/user/0/info.torapp.uweb/files/app/markdeep.html?url=%u
+plyr播放器:file:///data/user/0/info.torapp.uweb/files/app/plyr.html?u=%u
+dplayer播放器:file:///data/user/0/info.torapp.uweb/files/app/dplayer.html?u=%u
+pdf:file:///data/user/0/info.torapp.uweb/files/app/pdfviewer.html?file=%u
+epub:file:///data/user/0/info.torapp.uweb/files/app/epub.html?u=%u
+djvu:file:///data/user/0/info.torapp.uweb/files/app/djvu.html?url=%u
视频解析 (UA为PC时无广告):
-isyou:https://video.isyour.love/Search/SearchName/%u
+isyou:https://video.isyour.love/Search/SearchName/%u
更多视频服务见:
解析2
-Last Modified: 30 December 2025
-urls.py to support enhanced default.urls
+
Last Modified: 31 December 2025
+urls.py: support %u
From 8cf9fd91974ea7df7f1b916b045faf630ac78e40 Mon Sep 17 00:00:00 2001
From: James Feng Cao
Date: Wed, 31 Dec 2025 15:58:22 +0800
Subject: [PATCH 226/254] uweb1144: add novel reader support for large
text/html files (could be .gz,.br, .zst compressed)
---
latest.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/latest.html b/latest.html
index 063d04a7..c67f51c0 100644
--- a/latest.html
+++ b/latest.html
@@ -1,7 +1,7 @@
Uweb browser: minimal suckless web browser with unlimited power
-Amazon appstore
-Galaxy.Store
+
Uweb browser: downloads, plugins and tips
(Mirrors: gitlab frama codeberg repo fleek netlify surge kinsta bitbucket pages vercel render More...)
@@ -105,8 +104,8 @@
-Last Modified: 28 March 2026
-cleanup mirrors
+
Last Modified: 29 March 2026
+add search engines
diff --git a/en/sitemap.xml b/en/sitemap.xml
index 73cdee5e..48d9a847 100644
--- a/en/sitemap.xml
+++ b/en/sitemap.xml
@@ -19,7 +19,7 @@
/>
https://jamesfengcao.gitlab.io/uweb/en/
- 2026-03-28T22:19:56+08:00
+ 2026-03-30T13:40:22+08:00
https://jamesfengcao.gitlab.io/uweb/en/topposts/
- 2026-03-28T16:58:17+08:00
+ 2026-03-29T19:12:39+08:00
https://jamesfengcao.gitlab.io/uweb/en/urls/
2025-12-31T21:21:32+08:00
@@ -329,7 +329,7 @@
2024-04-07T19:01:03+08:00
https://jamesfengcao.gitlab.io/uweb/en/changelog/
- 2026-03-28T16:58:17+08:00
+ 2026-03-29T19:12:39+08:00
https://jamesfengcao.gitlab.io/uweb/en/sitemap/
2025-04-09T00:47:06+08:00
@@ -536,10 +536,10 @@
2025-12-08T08:44:26+08:00
https://jamesfengcao.gitlab.io/uweb/en/mirrors/
- 2026-03-27T19:21:45+08:00
+ 2026-03-30T13:40:22+08:00
https://jamesfengcao.gitlab.io/uweb/en/readme/
- 2026-03-28T22:19:56+08:00
+ 2026-03-29T19:15:18+08:00
https://jamesfengcao.gitlab.io/uweb/en/unlist/
- 2026-03-28T22:19:56+08:00
+ 2026-03-30T13:40:22+08:00
diff --git a/en/topposts/index.xml b/en/topposts/index.xml
index e60569f3..f0f2fb71 100644
--- a/en/topposts/index.xml
+++ b/en/topposts/index.xml
@@ -6,7 +6,7 @@
Recent content in Topposts on uweb browser: unlimited power
Hugo
en
- Sat, 28 Mar 2026 16:58:17 +0800
+ Sun, 29 Mar 2026 19:12:39 +0800
-
Url services
@@ -27,7 +27,7 @@
https://jamesfengcao.gitlab.io/uweb/en/changelog/
Fri, 16 Sep 2022 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/changelog/
- <p><a href="https://www.amazon.com/TorApp-Info-uweb-browser-for-geeks/dp/B098QPR6N5">Amazon appstore</a></p>
<p><a href="https://galaxystore.samsung.com/detail/info.torapp.uweb">Galaxy.Store</a></p>
<p><a href="https://github.com/torappinfo/uweb/releases/tag/v1">github</a></p>
<p><a href="https://sourceforge.net/projects/uwebbrowser/files/v1/">sourceforge</a></p>
<p><a href="https://uweb-browser-for-geeks.en.uptodown.com/android" title="uweb"><img src="https://stc.utdstc.com/img/mediakit/download-gio-big.png" alt=""></a></p>
<p><a href="https://codeberg.org/jamesfengcao/pages/releases">codeberg</a></p>
<p><a href="https://uno.teracloud.jp/share/1162dfa8376e1609">infinicloud</a></p>
<p><a href="https://gitee.com/jamesfengcao/uweb/releases">gitee</a></p>
<p><a href="https://gitea.com/torappinfo/uweb/releases">gitea</a></p>
<p><a href="https://gitdab.com/jamesfengcao/uweb/releases">gitdab</a></p>
<p><a href="https://gitnet.fr/jamesfengcao/uweb/releases">gitnet</a></p>
<p><a href="https://tildegit.org/jamesfengcao/uweb/releases">tildegit</a></p>
<p><a href="https://my.powerfolder.com/getlink/fi61cC6VHjK72tfufmnLAz/">powerfolder</a></p>
<p><a href="https://worktree.ca/jamesfengcao/uweb/releases">worktree</a></p>
<p><a href="https://codefloe.com/jamesfengcao/uweb/releases">codefloe</a></p>
<p><a href="https://notabug.org/torappinfo/uweb/releases">NotABug</a></p>
<p><a href="https://releases.pagure.org/uwebapk/">pagure</a></p>
<p><a href="https://pan.baidu.com/s/17coQj6DCHqghMMNJUyjgrA#list/path=%2Fuweb">baidu</a></p>
<p><a href="https://www.gitlink.org.cn/jamesfengcao/uweb/releases">gitlink</a></p>
<p><a href="https://pan.lanzouu.com/b0qpxnob">蓝奏</a></p>
<h4 id="main-features"><a href="../readme/index.html">Main features</a></h4>
<h4 id="change-logs"><a id="log">Change logs<a></h4>
<p>1149: siteextra/[domain.sanitizer] to support web page sanitizing<br>
1146: remote/local big txt/html file (optional .zst,.gz,.br compressed) as search engines<br>
1144: novel reader support for remote large text/html files (could be .gz, .br, .zst compressed)<br>
enhance url services to support %u, %t<br>
1139: support \n as newline in default.input & default.autoc<br>
1104: support command context submenus (image.link, download.link & context.link).</p>
+ <p><a href="https://galaxystore.samsung.com/detail/info.torapp.uweb">Galaxy.Store</a></p>
<p><a href="https://github.com/torappinfo/uweb/releases/tag/v1">github</a></p>
<p><a href="https://sourceforge.net/projects/uwebbrowser/files/v1/">sourceforge</a></p>
<p><a href="https://uweb-browser-for-geeks.en.uptodown.com/android" title="uweb"><img src="https://stc.utdstc.com/img/mediakit/download-gio-big.png" alt=""></a></p>
<p><a href="https://codeberg.org/jamesfengcao/pages/releases">codeberg</a></p>
<p><a href="https://uno.teracloud.jp/share/1162dfa8376e1609">infinicloud</a></p>
<p><a href="https://gitee.com/jamesfengcao/uweb/releases">gitee</a></p>
<p><a href="https://gitea.com/torappinfo/uweb/releases">gitea</a></p>
<p><a href="https://gitdab.com/jamesfengcao/uweb/releases">gitdab</a></p>
<p><a href="https://gitnet.fr/jamesfengcao/uweb/releases">gitnet</a></p>
<p><a href="https://tildegit.org/jamesfengcao/uweb/releases">tildegit</a></p>
<p><a href="https://my.powerfolder.com/getlink/fi61cC6VHjK72tfufmnLAz/">powerfolder</a></p>
<p><a href="https://worktree.ca/jamesfengcao/uweb/releases">worktree</a></p>
<p><a href="https://codefloe.com/jamesfengcao/uweb/releases">codefloe</a></p>
<p><a href="https://notabug.org/torappinfo/uweb/releases">NotABug</a></p>
<p><a href="https://releases.pagure.org/uwebapk/">pagure</a></p>
<p><a href="https://pan.baidu.com/s/17coQj6DCHqghMMNJUyjgrA#list/path=%2Fuweb">baidu</a></p>
<p><a href="https://www.gitlink.org.cn/jamesfengcao/uweb/releases">gitlink</a></p>
<p><a href="https://pan.lanzouu.com/b0qpxnob">蓝奏</a></p>
<h4 id="main-features"><a href="../readme/index.html">Main features</a></h4>
<h4 id="change-logs"><a id="log">Change logs<a></h4>
<p>1149: siteextra/[domain.sanitizer] to support web page sanitizing<br>
1146: remote/local big txt/html file (optional .zst,.gz,.br compressed) as search engines<br>
1144: novel reader support for remote large text/html files (could be .gz, .br, .zst compressed)<br>
enhance url services to support %u, %t<br>
1139: support \n as newline in default.input & default.autoc<br>
1104: support command context submenus (image.link, download.link & context.link).</p>
-
Configuration
diff --git a/en/unlist/index.xml b/en/unlist/index.xml
index 1b97ba12..e4e2a488 100644
--- a/en/unlist/index.xml
+++ b/en/unlist/index.xml
@@ -19,14 +19,14 @@
https://jamesfengcao.gitlab.io/uweb/en/mirrors/
Mon, 01 Jan 0001 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/mirrors/
- <style>a+br{display:none;}</style>
<h4 id="mirrors-for-version-1040">Mirrors (for version 1040+)</h4>
<p><a href="https://gitee.com/jamesfengcao/uweb/raw/master/redirect.html#">gitee</a><br>
<a href="https://gitea.com/torappinfo/uweb/raw/branch/master/redirect.html#">gitea</a><br>
<a href="https://tangled.org/@uweb.tngl.sh/uweb/raw/master/redirect.html#">tngl</a><br>
<a href="https://codefloe.com/jamesfengcao/uweb/raw/master/redirect.html#">codefloe</a><br>
<a href="https://worktree.ca/jamesfengcao/uweb/raw/master/redirect.html#">worktree</a><br>
<a href="https://notabug.org/torappinfo/uweb/raw/master/redirect.html#">notabug</a><br>
<a href="https://git.launchpad.net/uweb/plain/redirect.html#">launchpad</a><br>
<a href="https://framagit.org/torappinfo/uweb/-/raw/master/redirect.html#">framagit</a><br>
<a href="https://git.disroot.org/torappinfo/uweb/raw/branch/master/redirect.html#">disroot</a><br>
<a href="https://gitdab.com/jamesfengcao/uweb/raw/branch/master/redirect.html#">gitdab</a><br>
<a href="https://pagure.io/uweb/raw/master/f/redirect.html#">pagure</a><br>
<a href="https://bitbucket.org/torappinfo/torappinfo.bitbucket.io/raw/master/redirect.html#">bitbucket</a><br>
<a href="https://fastly.jsdelivr.net/gh/torappinfo/uweb/redirect.html#">jsdelivr</a><br>
<a href="https://dagshub.com/torappinfo/uweb/raw/master/redirect.html#">dagshub</a><br>
<a href="https://gitgud.io/jamesfengcao/uweb/-/raw/master/redirect.html#">gitgud</a><br>
<a href="https://gitly.org/jamesfengcao/uweb/raw/master/redirect.html#">gitly</a><br>
<a href="https://gitnet.fr/jamesfengcao/uweb/raw/branch/master/redirect.html#">gitnet</a><br>
<a href="https://tildegit.org/jamesfengcao/uweb/raw/branch/master/redirect.html#">tilde</a><br>
<a href="https://code.antopie.org/jamesfengcao/uweb/raw/branch/master/redirect.html#">antopie</a><br>
<a href="https://bgithub.xyz/torappinfo/uweb/raw/master/redirect.html#">bgithub</a></p>
<h4 id="mirrors-for-all-versions">Mirrors (for all versions)</h4>
<span>
<a href="i:0mi:5h:https://gitee.com/jamesfengcao/uweb/raw/master/redirect.html">1</a>
<a href="i:0m?:https://gitea.com/torappinfo/uweb/raw/branch/master/redirect.html">5</a>
<a href="i:0mi:5h?format=raw::https://sourceforge.net/p/uwebbrowser/code/ci/master/tree/redirect.html">6</a>
<a href="i:0mi:5h?format=raw::https://rocketgit.com/user/torappinfo/uweb/source/tree/branch/master/blob_download/redirect.html">7</a>
<a href="i:0m?:https://notabug.org/torappinfo/uweb/raw/master/redirect.html">8</a>
<a href="i:0mi:5h:https://git.launchpad.net/uweb/plain/redirect.html">9</a>
<a href="i:0m?:https://framagit.org/torappinfo/uweb/-/raw/master/redirect.html">10</a>
<a href="i:0m?:https://git.disroot.org/torappinfo/uweb/raw/branch/master/redirect.html">13</a>
<a href="i:0m?:https://gitdab.com/jamesfengcao/uweb/raw/branch/master/redirect.html">14</a>
<a href="i:0mi:5h/xxxx/?path=::https://dev.azure.com/jamesfengcao/1d8bf6c7-7c24-4441-bc5e-9709dcaf37fc/_apis/git/repositories/2a588d9b-f25a-46c0-bb3b-f685c635fcf8/itemsxxxx/redirect.html">15</a>
<a href="i:0mi:5h:https://pagure.io/uweb/raw/master/f/redirect.html">16</a>
<a href="i:0m?:https://bitbucket.org/torappinfo/torappinfo.bitbucket.io/raw/master/redirect.html">17</a>
<a href="i:0mi:5h:https://fastly.jsdelivr.net/gh/torappinfo/uweb/redirect.html">18</a>
<a href="i:0m?:https://dagshub.com/torappinfo/uweb/raw/master/redirect.html">19</a>
<a href="i:0mi:5h:https://gitgud.io/jamesfengcao/uweb/-/raw/master/redirect.html">20</a>
<a href="i:0m?:https://gitly.org/jamesfengcao/uweb/raw/master/redirect.html">gitly</a>
<a href="i:0m?:https://gitnet.fr/jamesfengcao/uweb/raw/branch/master/redirect.html">gitnet</a>
<a href="i:0m?:https://tildegit.org/jamesfengcao/uweb/raw/branch/master/redirect.html">tilde</a>
<a href="i:0m?:https://code.antopie.org/jamesfengcao/uweb/raw/branch/master/redirect.html">antopie</a>
</span>
<h4 id="more-mirrors-for-version-1131">More mirrors (for version 1131+)</h4>
<p><a href="i:ch%253cmeta:%253e:https://bbs.archlinux.org/viewtopic.php?id=129973">arch</a><br>
<a href="i:5hhttps://pastebin.com/raw/DCQ0kNEy">pastebin</a><br>
<a href="i:5hhttps://snippet.host/cgrsgw/raw">host</a><br>
<a href="i:ch%253cmeta:%253e:https://www.cnblogs.com/uweb/p/19186230">cnblogs</a><br>
<a href="i:ch%253cmeta:%253e:https://registry.npmmirror.com/ebrowser/latest">npm</a><br>
<a href="i:ch%26lt;:%26gt;:https://snippets.cacher.io/snippet/aee497272c19811ee919">cacher</a><br>
<a href="i:0UA1:i:ch%253cmeta:%253e:https://www.douban.com/group/topic/335836878/?_spm_id=Mjc5ODU0MDcy">dou</a><br>
<a href="i:ch%20%253cmeta:%253e:https://www.pdawiki.com/forum/forum.php?mod=viewthread&tid=32981&_dsign=5a39f06a">pdawiki</a><br>
<a href="i:ch%253cmeta:%253e:https://www.4d4y.com/forum/viewthread.php?tid=3403454">4d4y</a><br>
<a href="i:ch%253cmeta:%253e:https://xycq.org.cn/forum/thread-310888-1-1.html">xycq</a><br>
<a href="i:ch%253cmeta:%253e:https://tiexuedanxin.net/forum.php?mod=viewthread&tid=1069669">txdx</a><br>
<a href="i:ch%253cmeta:%253e:https://unpkg.com/ebrowser/README.md">unpkg</a><br>
<a href="https://uwebbrowser.sourceforge.io">sf</a><br>
<a href="https://uweb.w8.quuq.dev">w8</a></p>
<h4 id="repositories">Repositories</h4>
<p><a href="https://gitlab.com/jamesfengcao/uweb">gitlab</a><br>
<a href="https://sourceforge.net/p/uwebbrowser">sourceforge</a><br>
<a href="https://github.com/torappinfo/uweb">github</a><br>
<a href="https://bitbucket.org/torappinfo/torappinfo.bitbucket.io">bitbucket</a><br>
<a href="https://codeberg.org/jamesfengcao/pages/src/branch/master/README.md">codeberg</a><br>
<a href="https://gitee.com/jamesfengcao/uweb">gitee</a><br>
<a href="https://www.gitlink.org.cn/jamesfengcao/uweb">gitlink</a><br>
<a href="https://gitgud.io/jamesfengcao/uweb">gitgud</a><br>
<a href="https://git.disroot.org/torappinfo/uweb/src/branch/master/README.md">disroot</a><br>
<a href="https://gitea.com/torappinfo/uweb/src/branch/master/README.md">gitea</a><br>
<a href="https://notabug.org/torappinfo/uweb/src/master/README.md">notabug</a><br>
<a href="https://framagit.org/torappinfo/uweb">framagit</a><br>
<a href="https://gitdab.com/jamesfengcao/uweb/src/branch/master/README.md">gitdab</a><br>
<a href="https://pagure.io/uweb/blob/master/f/README.md">pagure</a><br>
<a href="https://dagshub.com/torappinfo/uweb/src/master/README.md">dagshub</a><br>
<a href="https://gitnet.fr/jamesfengcao/uweb/src/branch/master/README.md">gitnet</a><br>
<a href="https://tildegit.org/jamesfengcao/uweb/src/branch/master/README.md">tilde</a><br>
<a href="https://code.antopie.org/jamesfengcao/uweb/src/master/README.md">antopie</a><br>
<a href="https://tangled.org/@uweb.tngl.sh/uweb/blob/master/README.md">tngl</a><br>
<a href="https://codefloe.com/jamesfengcao/uweb">codefloe</a><br>
<a href="https://worktree.ca/jamesfengcao/uweb">worktree</a></p>
+ <style>a+br{display:none;}</style>
<h4 id="mirrors-for-version-1040">Mirrors (for version 1040+)</h4>
<p><a href="https://gitee.com/jamesfengcao/uweb/raw/master/redirect.html#">gitee</a><br>
<a href="https://gitea.com/torappinfo/uweb/raw/branch/master/redirect.html#">gitea</a><br>
<a href="https://tangled.org/@uweb.tngl.sh/uweb/raw/master/redirect.html#">tngl</a><br>
<a href="https://codefloe.com/jamesfengcao/uweb/raw/master/redirect.html#">codefloe</a><br>
<a href="https://worktree.ca/jamesfengcao/uweb/raw/master/redirect.html#">worktree</a><br>
<a href="https://notabug.org/torappinfo/uweb/raw/master/redirect.html#">notabug</a><br>
<a href="https://git.launchpad.net/uweb/plain/redirect.html#">launchpad</a><br>
<a href="https://framagit.org/torappinfo/uweb/-/raw/master/redirect.html#">framagit</a><br>
<a href="https://git.disroot.org/torappinfo/uweb/raw/branch/master/redirect.html#">disroot</a><br>
<a href="https://gitdab.com/jamesfengcao/uweb/raw/branch/master/redirect.html#">gitdab</a><br>
<a href="https://pagure.io/uweb/raw/master/f/redirect.html#">pagure</a><br>
<a href="https://bitbucket.org/torappinfo/torappinfo.bitbucket.io/raw/master/redirect.html#">bitbucket</a><br>
<a href="https://fastly.jsdelivr.net/gh/torappinfo/uweb/redirect.html#">jsdelivr</a><br>
<a href="https://dagshub.com/torappinfo/uweb/raw/master/redirect.html#">dagshub</a><br>
<a href="https://gitgud.io/jamesfengcao/uweb/-/raw/master/redirect.html#">gitgud</a><br>
<a href="https://gitnet.fr/jamesfengcao/uweb/raw/branch/master/redirect.html#">gitnet</a><br>
<a href="https://tildegit.org/jamesfengcao/uweb/raw/branch/master/redirect.html#">tilde</a><br>
<a href="https://code.antopie.org/jamesfengcao/uweb/raw/branch/master/redirect.html#">antopie</a><br>
<a href="https://bgithub.xyz/torappinfo/uweb/raw/master/redirect.html#">bgithub</a></p>
<h4 id="mirrors-for-all-versions">Mirrors (for all versions)</h4>
<span>
<a href="i:0mi:5h:https://gitee.com/jamesfengcao/uweb/raw/master/redirect.html">1</a>
<a href="i:0m?:https://gitea.com/torappinfo/uweb/raw/branch/master/redirect.html">5</a>
<a href="i:0mi:5h?format=raw::https://sourceforge.net/p/uwebbrowser/code/ci/master/tree/redirect.html">6</a>
<a href="i:0mi:5h?format=raw::https://rocketgit.com/user/torappinfo/uweb/source/tree/branch/master/blob_download/redirect.html">7</a>
<a href="i:0m?:https://notabug.org/torappinfo/uweb/raw/master/redirect.html">8</a>
<a href="i:0mi:5h:https://git.launchpad.net/uweb/plain/redirect.html">9</a>
<a href="i:0m?:https://framagit.org/torappinfo/uweb/-/raw/master/redirect.html">10</a>
<a href="i:0m?:https://git.disroot.org/torappinfo/uweb/raw/branch/master/redirect.html">13</a>
<a href="i:0m?:https://gitdab.com/jamesfengcao/uweb/raw/branch/master/redirect.html">14</a>
<a href="i:0mi:5h/xxxx/?path=::https://dev.azure.com/jamesfengcao/1d8bf6c7-7c24-4441-bc5e-9709dcaf37fc/_apis/git/repositories/2a588d9b-f25a-46c0-bb3b-f685c635fcf8/itemsxxxx/redirect.html">15</a>
<a href="i:0mi:5h:https://pagure.io/uweb/raw/master/f/redirect.html">16</a>
<a href="i:0m?:https://bitbucket.org/torappinfo/torappinfo.bitbucket.io/raw/master/redirect.html">17</a>
<a href="i:0mi:5h:https://fastly.jsdelivr.net/gh/torappinfo/uweb/redirect.html">18</a>
<a href="i:0m?:https://dagshub.com/torappinfo/uweb/raw/master/redirect.html">19</a>
<a href="i:0mi:5h:https://gitgud.io/jamesfengcao/uweb/-/raw/master/redirect.html">20</a>
<a href="i:0m?:https://gitnet.fr/jamesfengcao/uweb/raw/branch/master/redirect.html">gitnet</a>
<a href="i:0m?:https://tildegit.org/jamesfengcao/uweb/raw/branch/master/redirect.html">tilde</a>
<a href="i:0m?:https://code.antopie.org/jamesfengcao/uweb/raw/branch/master/redirect.html">antopie</a>
</span>
<h4 id="more-mirrors-for-version-1131">More mirrors (for version 1131+)</h4>
<p><a href="i:ch%253cmeta:%253e:https://bbs.archlinux.org/viewtopic.php?id=129973">arch</a><br>
<a href="i:5hhttps://pastebin.com/raw/DCQ0kNEy">pastebin</a><br>
<a href="i:5hhttps://snippet.host/cgrsgw/raw">host</a><br>
<a href="i:ch%253cmeta:%253e:https://www.cnblogs.com/uweb/p/19186230">cnblogs</a><br>
<a href="i:ch%253cmeta:%253e:https://registry.npmmirror.com/ebrowser/latest">npm</a><br>
<a href="i:ch%26lt;:%26gt;:https://snippets.cacher.io/snippet/aee497272c19811ee919">cacher</a><br>
<a href="i:0UA1:i:ch%253cmeta:%253e:https://www.douban.com/group/topic/335836878/?_spm_id=Mjc5ODU0MDcy">dou</a><br>
<a href="i:ch%20%253cmeta:%253e:https://www.pdawiki.com/forum/forum.php?mod=viewthread&tid=32981&_dsign=5a39f06a">pdawiki</a><br>
<a href="i:ch%253cmeta:%253e:https://www.4d4y.com/forum/viewthread.php?tid=3403454">4d4y</a><br>
<a href="i:ch%253cmeta:%253e:https://xycq.org.cn/forum/thread-310888-1-1.html">xycq</a><br>
<a href="i:ch%253cmeta:%253e:https://tiexuedanxin.net/forum.php?mod=viewthread&tid=1069669">txdx</a><br>
<a href="i:ch%253cmeta:%253e:https://bbs.wuyou.net/forum.php?mod=viewthread&tid=40124">wuyou</a><br>
<a href="i:ch%253cmeta:%253e:https://unpkg.com/ebrowser/README.md">unpkg</a><br>
<a href="https://uwebbrowser.sourceforge.io">sf</a><br>
<a href="https://uweb.w8.quuq.dev">w8</a></p>
<h4 id="repositories">Repositories</h4>
<p><a href="https://gitlab.com/jamesfengcao/uweb">gitlab</a><br>
<a href="https://sourceforge.net/p/uwebbrowser">sourceforge</a><br>
<a href="https://github.com/torappinfo/uweb">github</a><br>
<a href="https://bitbucket.org/torappinfo/torappinfo.bitbucket.io">bitbucket</a><br>
<a href="https://codeberg.org/jamesfengcao/pages/src/branch/master/README.md">codeberg</a><br>
<a href="https://gitee.com/jamesfengcao/uweb">gitee</a><br>
<a href="https://www.gitlink.org.cn/jamesfengcao/uweb">gitlink</a><br>
<a href="https://gitgud.io/jamesfengcao/uweb">gitgud</a><br>
<a href="https://git.disroot.org/torappinfo/uweb/src/branch/master/README.md">disroot</a><br>
<a href="https://gitea.com/torappinfo/uweb/src/branch/master/README.md">gitea</a><br>
<a href="https://notabug.org/torappinfo/uweb/src/master/README.md">notabug</a><br>
<a href="https://framagit.org/torappinfo/uweb">framagit</a><br>
<a href="https://gitdab.com/jamesfengcao/uweb/src/branch/master/README.md">gitdab</a><br>
<a href="https://pagure.io/uweb/blob/master/f/README.md">pagure</a><br>
<a href="https://dagshub.com/torappinfo/uweb/src/master/README.md">dagshub</a><br>
<a href="https://gitnet.fr/jamesfengcao/uweb/src/branch/master/README.md">gitnet</a><br>
<a href="https://tildegit.org/jamesfengcao/uweb/src/branch/master/README.md">tilde</a><br>
<a href="https://code.antopie.org/jamesfengcao/uweb/src/master/README.md">antopie</a><br>
<a href="https://tangled.org/@uweb.tngl.sh/uweb/blob/master/README.md">tngl</a><br>
<a href="https://codefloe.com/jamesfengcao/uweb">codefloe</a><br>
<a href="https://worktree.ca/jamesfengcao/uweb">worktree</a></p>
-
https://jamesfengcao.gitlab.io/uweb/en/readme/
Mon, 01 Jan 0001 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/en/readme/
- <script>function notRepo(){let u=location.href.replace(/#$/, '');return u.endsWith('index.html')||u.endsWith('readme/');}</script>
<h3 id="uweb-browser-minimal-suckless-web-browser-with-unlimited-power">Uweb browser: minimal suckless web browser with unlimited power</h3>
<p><a href="README.zh-Hans.md" onclick="if(notRepo()){location='../../zh/readme/index.html#';return false;}">中文</a></p>
<p><a href="https://www.amazon.com/TorApp-Info-uweb-browser-for-geeks/dp/B098QPR6N5">Amazon appstore</a><br>
<a href="https://galaxystore.samsung.com/detail/info.torapp.uweb">Galaxy.Store</a><br>
<a href="en/download.md" onclick="if(notRepo()){location='../../en/changelog/index.html#';return false;}">Downloads</a></p>
<p><a href="https://torappinfo.github.io/uweb/en/">Uweb browser: downloads, plugins and tips</a><br>
(Mirrors: <a href="https://jamesfengcao.gitlab.io/uweb/en/">gitlab</a> <a href="https://torappinfo.frama.io/uweb/en/">frama</a> <a href="https://uweb.codeberg.page/en/">codeberg</a> <a href="https://repo.or.cz/uweb.git/blob_plain/HEAD:/en/index.html">repo</a> <a href="https://uweb.on-fleek.app/en/">fleek</a> <a href="https://uwebzh.netlify.app/en/">netlify</a> <a href="https://uweb.surge.sh/en/">surge</a> <a href="https://uwebbrowser-t27o4.kinsta.page">kinsta</a> <a href="https://torappinfo.bitbucket.io/en/">bitbucket</a> <a href="https://muweb.pages.dev/en/">pages</a> <a href="https://uweb.vercel.app/en/">vercel</a> <a href="https://uweb.onrender.com/en/">render</a> <a href="en/mirrors.md" onclick="if(notRepo()){location='../../en/mirrors/index.html#';return false;}">More...</a>)</p>
<ul>
<li><a href="en/search.md" onclick="if(notRepo()){location='../search/index.html#';return false;}">AI chat as search engine</a>; optimized UI for both AI and traditional search; <a href="../input/index.html#">input helpers</a> for complex query.</li>
<li><a href="en/tips.md" onclick="if(notRepo()){location='../redirect/index.html#';return false;}">Global redirection</a> to bypass censorship.</li>
<li>Convenient: Any AI chatbot/book/dictionary/txt/command line/app/webapp (web extensions) as search engine.</li>
<li>Tiny: less than 250k.</li>
<li>Fast: run fast, even with thousands of user provided css/scripts/htmls.</li>
<li>Efficient: less touches, one click to reach any number of search engines without repeated input; automate online services.</li>
<li>Powerful: any native functionality with html5 enhancement and still secure; any urls to host website; javascript and shell scripting for general processing.</li>
<li>Customizable: user-defined menus, (new) buttons and gestures for user agents, bookmarklets, url services, shell commands, internal functionality links and text processing etc.</li>
<li>URL bar command line support ("!" and .js file as command).</li>
<li>Site-specific JS/CSS/HTML/preprocessing, ex. "siteextra/[domain.sanitizer]" support.</li>
<li>Online play/preview/preprocess for downloadable resources.</li>
<li>Multiple type profiles: switch any data including website logins, user configurations orthogonally.</li>
<li>Supports enhanced user "hosts" file. Empty IP address to lift all server-imposed limitations.</li>
<li>Website test automation scripting. crontab support (alarm clock and more).</li>
</ul>
<h4 id="main-features">Main features</h4>
<p>Custom paper size PDF export and long vector screenshot, TTS, text reflow, resource sniffer, translation, reader's mode, user-defined url redirection, webdav/http backup & restore, auto next page, sending/receiving msg/file(s), site config (UA, no JS, no image, no 3rd party script/resource,active script, global scripts), http(s)/socks proxy, Wake-on-LAN, enabling html5 apps for local files (pdf/djvu/epub viewer, mdict dictionary lookup etc.).</p>
+ <script>function notRepo(){let u=location.href.replace(/#$/, '');return u.endsWith('index.html')||u.endsWith('readme/');}</script>
<h3 id="uweb-browser-minimal-suckless-web-browser-with-unlimited-power">Uweb browser: minimal suckless web browser with unlimited power</h3>
<p><a href="README.zh-Hans.md" onclick="if(notRepo()){location='../../zh/readme/index.html#';return false;}">中文</a></p>
<p><a href="https://galaxystore.samsung.com/detail/info.torapp.uweb">Galaxy.Store</a><br>
<a href="en/download.md" onclick="if(notRepo()){location='../../en/changelog/index.html#';return false;}">Downloads</a></p>
<p><a href="https://torappinfo.github.io/uweb/en/">Uweb browser: downloads, plugins and tips</a><br>
(Mirrors: <a href="https://jamesfengcao.gitlab.io/uweb/en/">gitlab</a> <a href="https://torappinfo.frama.io/uweb/en/">frama</a> <a href="https://uweb.codeberg.page/en/">codeberg</a> <a href="https://repo.or.cz/uweb.git/blob_plain/HEAD:/en/index.html">repo</a> <a href="https://uweb.on-fleek.app/en/">fleek</a> <a href="https://uwebzh.netlify.app/en/">netlify</a> <a href="https://uweb.surge.sh/en/">surge</a> <a href="https://uwebbrowser-t27o4.kinsta.page">kinsta</a> <a href="https://torappinfo.bitbucket.io/en/">bitbucket</a> <a href="https://muweb.pages.dev/en/">pages</a> <a href="https://uweb.vercel.app/en/">vercel</a> <a href="https://uweb.onrender.com/en/">render</a> <a href="en/mirrors.md" onclick="if(notRepo()){location='../../en/mirrors/index.html#';return false;}">More...</a>)</p>
<ul>
<li><a href="en/search.md" onclick="if(notRepo()){location='../search/index.html#';return false;}">AI chat as search engine</a>; optimized UI for both AI and traditional search; <a href="../input/index.html#">input helpers</a> for complex query.</li>
<li><a href="en/tips.md" onclick="if(notRepo()){location='../redirect/index.html#';return false;}">Global redirection</a> to bypass censorship.</li>
<li>Convenient: Any AI chatbot/book/dictionary/txt/command line/app/webapp (web extensions) as search engine.</li>
<li>Tiny: less than 250k.</li>
<li>Fast: run fast, even with thousands of user provided css/scripts/htmls.</li>
<li>Efficient: less touches, one click to reach any number of search engines without repeated input; automate online services.</li>
<li>Powerful: any native functionality with html5 enhancement and still secure; any urls to host website; javascript and shell scripting for general processing.</li>
<li>Customizable: user-defined menus, (new) buttons and gestures for user agents, bookmarklets, url services, shell commands, internal functionality links and text processing etc.</li>
<li>URL bar command line support ("!" and .js file as command).</li>
<li>Site-specific JS/CSS/HTML/preprocessing, ex. "siteextra/[domain.sanitizer]" support.</li>
<li>Online play/preview/preprocess for downloadable resources.</li>
<li>Multiple type profiles: switch any data including website logins, user configurations orthogonally.</li>
<li>Supports enhanced user "hosts" file. Empty IP address to lift all server-imposed limitations.</li>
<li>Website test automation scripting. crontab support (alarm clock and more).</li>
</ul>
<h4 id="main-features">Main features</h4>
<p>Custom paper size PDF export and long vector screenshot, TTS, text reflow, resource sniffer, translation, reader's mode, user-defined url redirection, webdav/http backup & restore, auto next page, sending/receiving msg/file(s), site config (UA, no JS, no image, no 3rd party script/resource,active script, global scripts), http(s)/socks proxy, Wake-on-LAN, enabling html5 apps for local files (pdf/djvu/epub viewer, mdict dictionary lookup etc.).</p>
diff --git a/misc/ebrowser/search.json b/misc/ebrowser/search.json
index a2e19cbc..4cd0c402 100644
--- a/misc/ebrowser/search.json
+++ b/misc/ebrowser/search.json
@@ -1,5 +1,6 @@
{
"b":"https://www4.bing.com/search?q=%s",
+ "xs":"https://www.xseari.com/search/?q=%s",
"md":"i:0/js/uweb2edit.js:https://www.miaoda.cn/?uweb=%s",
"n":"https://www.n.cn/chathome?q=%s",
"z":"https://chat.z.ai/?q=%s",
diff --git a/sitemap.xml b/sitemap.xml
index 53e68993..7af88b5a 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,14 +4,14 @@
https://jamesfengcao.gitlab.io/uweb/en/sitemap.xml
- 2026-03-28T22:19:56+08:00
+ 2026-03-30T13:40:22+08:00
https://jamesfengcao.gitlab.io/uweb/zh/sitemap.xml
- 2026-03-28T22:21:03+08:00
+ 2026-03-31T09:44:39+08:00
diff --git a/zh/index.xml b/zh/index.xml
index 0254fc30..e0e0aeb4 100644
--- a/zh/index.xml
+++ b/zh/index.xml
@@ -6,7 +6,7 @@
Recent content on 超微浏览器: 威、快、高效、极致优化
Hugo
zh
- Sat, 28 Mar 2026 22:21:03 +0800
+ Tue, 31 Mar 2026 09:44:39 +0800
-
配置浏览器特色服务
@@ -146,7 +146,7 @@
https://jamesfengcao.gitlab.io/uweb/zh/rjs/
Sun, 01 May 2022 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/zh/rjs/
- <p><a href="../sitejs/index.html#">特定网址用户脚本</a></p>
<p><b>全局脚本</b>位于js子目录, 长按[☰]按钮配置。点击以下链<br>
接安装:<br>
<a target="_self" href="i:0hjs/记住密码.js:../searchurl/txt/passwdsave.js">记住密码</a><br>
<a target="_self" href="i:0hjs/极速网页.js:https://fastly.jsdelivr.net/npm/instant.page">极速网页</a></p>
<p><b>大型脚本</b>可安装到"bookmarklet"目录下(长按js按钮):<br>
<a target="_self" href='i:0hbookmarklet/eruda.js:https://fastly.jsdelivr.net/npm/eruda:%0Aeruda.init()'>Eruda</a></p>
<p><a target="_self" href="i:0hbookmarklet/performance.js:https://fastly.jsdelivr.net/gh/micmro/performance-bookmarklet/dist/performanceBookmarklet.min.js">Performance</a><br>
<a target="_self" href="i:0hbookmarklet/移除覆盖物.js:../searchurl/bml/content/rmo.js">移除覆盖物</a></p>
<p>注意:文件名以"!"开头的大型脚本可以无视CSP装载其它远程脚本。</p>
<p><b>远程脚本</b>配置文件default.rjs样列如下,点击以下链接自动安装 (清空后台重启浏览器,长按搜索按钮,则弹出远程脚本菜单):</p>
<p><a href="i:04Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']">显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']</a></p>
<p><a href="i:04新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)">新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)</a></p>
<p><a href="i:04站内搜索:;open('i:15site:' + location.hostname)">站内搜索:;open('i:15site:' + location.hostname)</a></p>
<p><a href="i:04编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v">编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v</a></p>
<p>远程及小型脚本可安装到default.rjs文件中。远程脚本对CSP网站仍然有效。:<br>
<a target="_self" href="i:0gdefault.rjs:../searchurl/txt/rjs.cfg">点击安装背景图等</a></p>
<p>远程脚本配置文件default.rjs每行格式如下 (url部分支持js代码运算):<br>
[远程脚本名]:[返回url数组的javascript代码]</p>
<p>其中url可以为本地http脚本地址。譬如'https://l/app...' (<a href="../html5/index.html#">本地html5应用</a>或<a href="../offlinecache/index.html#">离线缓存</a>)。此时,js脚本也可使用<a href="../links/index.html#">.link文件</a>方式调用。</p>
+ <p><a href="../sitejs/index.html#">特定网址用户脚本</a></p>
<p><b>全局脚本</b>位于js子目录, 长按[☰]按钮配置。点击以下链<br>
接安装:<br>
<a target="_self" href="i:0hjs/记住密码.js:../searchurl/txt/passwdsave.js">记住密码</a><br>
<a target="_self" href="i:0hjs/极速网页.js:https://fastly.jsdelivr.net/npm/instant.page">极速网页</a></p>
<p><b>大型脚本</b>可安装到"bookmarklet"目录下(长按js按钮):<br>
<a target="_self" href="i:0hbookmarklet/translate.js:https://cdn.staticfile.net/translate.js/3.18.66/translate.js:%0Atranslate.service.use('client.edge');translate.listener.start();translate.execute();">Translate</a></p>
<p><a target="_self" href='i:0hbookmarklet/eruda.js:https://fastly.jsdelivr.net/npm/eruda:%0Aeruda.init()'>Eruda</a></p>
<p><a target="_self" href="i:0hbookmarklet/performance.js:https://fastly.jsdelivr.net/gh/micmro/performance-bookmarklet/dist/performanceBookmarklet.min.js">Performance</a><br>
<a target="_self" href="i:0hbookmarklet/移除覆盖物.js:../searchurl/bml/content/rmo.js">移除覆盖物</a></p>
<p>注意:文件名以"!"开头的大型脚本可以无视CSP装载其它远程脚本。</p>
<p><b>远程脚本</b>配置文件default.rjs样列如下,点击以下链接自动安装 (清空后台重启浏览器,长按搜索按钮,则弹出远程脚本菜单):</p>
<p><a href="i:04Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']">显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']</a></p>
<p><a href="i:04新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)">新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)</a></p>
<p><a href="i:04站内搜索:;open('i:15site:' + location.hostname)">站内搜索:;open('i:15site:' + location.hostname)</a></p>
<p><a href="i:04编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v">编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v</a></p>
<p>远程及小型脚本可安装到default.rjs文件中。远程脚本对CSP网站仍然有效。:<br>
<a target="_self" href="i:0gdefault.rjs:../searchurl/txt/rjs.cfg">点击安装背景图等</a></p>
<p>远程脚本配置文件default.rjs每行格式如下 (url部分支持js代码运算):<br>
[远程脚本名]:[返回url数组的javascript代码]</p>
<p>其中url可以为本地http脚本地址。譬如'https://l/app...' (<a href="../html5/index.html#">本地html5应用</a>或<a href="../offlinecache/index.html#">离线缓存</a>)。此时,js脚本也可使用<a href="../links/index.html#">.link文件</a>方式调用。</p>
-
CSS样式
@@ -244,7 +244,7 @@
https://jamesfengcao.gitlab.io/uweb/zh/readme/
Mon, 01 Jan 0001 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/zh/readme/
- <script>function notRepo(){let u=location.href.replace(/#$/, '');return u.endsWith('index.html')||u.endsWith('readme/');}</script>
<h3 id="超微浏览器-uweb-browser-释放无尽威能微威快高效极致优化">超微浏览器 (uweb browser): 释放无尽威能,微、威、快、高效、极致优化</h3>
<p><a href="README.md" onclick="if(notRepo()){location='../../en/readme/index.html#';return false;}">English</a><br>
<a href="zh/donate.md" onclick="if(notRepo()){location='../searchurl/donate.html#';return false;}">捐赠</a></p>
<p><a href="https://www.amazon.com/TorApp-Info-uweb-browser-for-geeks/dp/B098QPR6N5">Amazon appstore</a><br>
<a href="https://galaxystore.samsung.com/detail/info.torapp.uweb">Galaxy.Store</a><br>
<a href="en/download.md" onclick="if(notRepo()){location='../../en/changelog/index.html#';return false;}">下载</a></p>
<p><a href="https://repo.or.cz/uweb.git/blob_plain/HEAD:/zh/index.html">超微浏览器下载及使用技巧</a><br>
(镜像: <a href="https://uweb.grebedoc.dev/zh/">grebe</a> <a href="https://jamesfengcao.gitlab.io/uweb/zh/">gitlab</a> <a href="https://torappinfo.frama.io/uweb/zh/">frama</a> <a href="https://repo.or.cz/uweb.git/blob_plain/HEAD:/zh/index.html">repo</a> <a href="https://uweb.codeberg.page/zh/">codeberg</a> <a href="https://torappinfo.github.io/uweb/zh/">github</a> <a href="https://uweb.onrender.com/zh/">render</a> <a href="https://uweb.surge.sh/zh/">surge</a> <a href="https://uwebzh.netlify.app/zh/">netlify</a> <a href="https://uweb-m.pgs.sh/zh/">pgs</a> <a href="https://uwebbrowser-t27o4.kinsta.page/zh/">kinsta</a> <a href="https://uweb.on-fleek.app/zh/">fleek</a> <a href="https://muweb.pages.dev/zh/">pages</a> <a href="https://torappinfo.bitbucket.io/zh/">bitbucket</a> <a href="https://torapp.eu.org/zh/">torapp</a> <a href="https://uweb.torapp.eu.org/zh/">torappv</a> <a href="https://torappinfo-uweb.statichost.eu">statichost</a> <a href="https://uweb.maozi.io/zh/">maozi</a> <a href="https://uweb.vercel.app/zh/">vercel</a> <a href="en/mirrors.md" onclick="if(notRepo()){location='../../en/mirrors/index.html#';return false;}">专用镜像...</a>)</p>
<ul>
<li><a href="zh/search.md" onclick="if(notRepo()){location='../search/index.html#';return false;}">提供20多deepseek满血版接入点。</a></li>
<li><span style="color:red">免魔法国内直接访问英文技术网站如<a href="zh/tips.md" onclick="if(notRepo()){location='../tips/index.html#';return false;}">google、百科等</a></span></li>
<li>无需帐号,无限制支持claude4.5,chatgpt5.1, gemini 2.5 pro/flash, grok4等超过500个最新AI模型免费使用。(少部分地区需配合上一条技术)</li>
<li><a href="zh/search.md" onclick="if(notRepo()){location='../search/index.html#';return false;}">AI聊天可作为搜索引擎</a>,对复杂问询提供多种<a href="../input/index.html#">输入辅助</a>;不受剪贴板长度限制,<a href="../textprocess/index.html#">超长文本自由传</a> (AI输入或共享)。</li>
<li>微:不到250K。</li>
<li>威:无穷无尽的功能,使用增强后的html5可以实现任何本地应用功能。支持使用js脚本、url服务、shell命令、内部功能链接定制菜单/(新)按钮/手势; 远程数据皆可成网站。</li>
<li>便捷:AI聊天/图书/txt/词典/命令行/APP/webapp可作为搜索引擎使用。</li>
<li>快:手机越慢,脚本插件越多越明显。</li>
<li>高效:最少的操作,在线服务全自动(参看常用链接网页)。</li>
<li>极致优化:最少存储写操作,比如浏览器转到后台前配置变化如恢复成原样则无写操作。</li>
<li>地址栏支持命令行 ("!", 物理键盘支持更佳)</li>
<li>指定域名: 用户定义JS/CSS/HTML/显示前源码预处理,支持使用"siteextra/[domain.sanitizer]"对网页任意定制。</li>
<li>支持用户定义域名属性。</li>
<li>下载资源在线播放/预览/预处理。</li>
<li>独立切换网站登录、配置文件。</li>
<li>支持网站测试自动化脚本 (可用于app服务端测试)。支持crontab(闹钟、定时任务等)。</li>
</ul>
<h4 id="截屏">截屏</h4>
<p><img src="https://i.postimg.cc/rsL9G5N1/home1.png" alt=""><br>
<img src="https://i.postimg.cc/9QxJ3Rc2/globalcss.png" alt=""><br>
<img src="https://i.postimg.cc/VksDHBQ4/globaljs.png" alt=""><br>
<img src="https://i.postimg.cc/HLV3TYLy/longclick.png" alt=""><br>
<img src="https://i.postimg.cc/XJ58ysdN/option1.png" alt=""><br>
<img src="https://i.postimg.cc/0NFnQT6H/option2.png" alt=""></p>
<h4 id="软件功能">软件功能</h4>
<p>输出自定义页面大小PDF、矢量图长截屏、朗读、文本重排、嗅探、比价、翻译、视频解析、离线保存、阅读模式(推荐与脚本激活模式配合)、网址重定向至国内、多帐号切换、网盘离线下载、文件管理、webdav/http空间备份/恢复任何指定文件集、智能翻页、目录文件传送、网站独立设置(ua,禁用脚本,无图,激活脚本)、行编辑器、网络唤醒(Wake-on-LAN)。通过安装html5应用可预览/阅读本地或在线任意格式文件(pdf,djvu,epub,mdx/mdd,docx等)。</p>
<p>修仙小说里面有一种异能,叫做“成功可以复制”,只要成功一次,就能无限复制。超微浏览器中这种异能叫"超级书签"。成功使用时保存,需要时就可以无限恢复。</p>
<p>小书签(bookmarklet)再也不用手工输入,直接将小书签网站加入书签即可。运行时长按出菜单后选择“在新窗口中打开”,小书签将作用于最后一个窗口。</p>
<p>独创不良信息绝杀:阻止指定根域名的一切子域名、孙域名...,不良信息一网打尽。 支持根域名前缀、网址路径正则表达式。</p>
<p>独创脚本激活模式,脚本执行后被激活,此后自动作用于同类网址。</p>
<p>支持全局用户脚本/样式,可任意叠加,轻松切换。</p>
<p>支持网址特定脚本/样式,可轻松支持百万以上不同脚本。</p>
<p>支持自定义任意多个搜索引擎; 支持执行用户提供任何js文件; 支持用户定义任意多个useragent; 长按链接支持运行第三方程序; 长按链接支持运行用户js文件。</p>
<p>安装定制版Termux然后再安装超微浏览器(顺序不能错),可用地址栏作图(类似matlab功能)、超级计算器(无限精度/π的前万位或更多、无限函数、无限常量)、符号演算(解方程、分解因式、求积分导数)、离线字典查找等。譬如地址栏输入sin(x)**5就直接得到函数图形。利用好第三方代码,才能真正发挥出uWeb的潜能。</p>
<h4 id="ebrowser-for-windows-macos-and-linux"><a href="misc/ebrowser/README.md" onclick="if(notRepo()){location='../../en/ebrowserreadme/index.html#';return false;}">Ebrowser</a> for Windows, MacOS and Linux</h4>
<p>可看作超微浏览器台式机简易版,用于弥补普通浏览器访问痛点。</p>
+ <script>function notRepo(){let u=location.href.replace(/#$/, '');return u.endsWith('index.html')||u.endsWith('readme/');}</script>
<h3 id="超微浏览器-uweb-browser-释放无尽威能微威快高效极致优化">超微浏览器 (uweb browser): 释放无尽威能,微、威、快、高效、极致优化</h3>
<p><a href="README.md" onclick="if(notRepo()){location='../../en/readme/index.html#';return false;}">English</a><br>
<a href="zh/donate.md" onclick="if(notRepo()){location='../searchurl/donate.html#';return false;}">捐赠</a></p>
<p><a href="https://galaxystore.samsung.com/detail/info.torapp.uweb">Galaxy.Store</a><br>
<a href="en/download.md" onclick="if(notRepo()){location='../../en/changelog/index.html#';return false;}">下载</a></p>
<p><a href="https://repo.or.cz/uweb.git/blob_plain/HEAD:/zh/index.html">超微浏览器下载及使用技巧</a><br>
(镜像: <a href="https://uweb.grebedoc.dev/zh/">grebe</a> <a href="https://jamesfengcao.gitlab.io/uweb/zh/">gitlab</a> <a href="https://torappinfo.frama.io/uweb/zh/">frama</a> <a href="https://repo.or.cz/uweb.git/blob_plain/HEAD:/zh/index.html">repo</a> <a href="https://uweb.codeberg.page/zh/">codeberg</a> <a href="https://torappinfo.github.io/uweb/zh/">github</a> <a href="https://uweb.onrender.com/zh/">render</a> <a href="https://uweb.surge.sh/zh/">surge</a> <a href="https://uwebzh.netlify.app/zh/">netlify</a> <a href="https://uweb-m.pgs.sh/zh/">pgs</a> <a href="https://uwebbrowser-t27o4.kinsta.page/zh/">kinsta</a> <a href="https://uweb.on-fleek.app/zh/">fleek</a> <a href="https://muweb.pages.dev/zh/">pages</a> <a href="https://torappinfo.bitbucket.io/zh/">bitbucket</a> <a href="https://torapp.eu.org/zh/">torapp</a> <a href="https://uweb.torapp.eu.org/zh/">torappv</a> <a href="https://torappinfo-uweb.statichost.eu">statichost</a> <a href="https://uweb.maozi.io/zh/">maozi</a> <a href="https://uweb.vercel.app/zh/">vercel</a> <a href="en/mirrors.md" onclick="if(notRepo()){location='../../en/mirrors/index.html#';return false;}">专用镜像...</a>)</p>
<ul>
<li><a href="zh/search.md" onclick="if(notRepo()){location='../search/index.html#';return false;}">提供20多deepseek满血版接入点。</a></li>
<li><span style="color:red">免魔法国内直接访问英文技术网站如<a href="zh/tips.md" onclick="if(notRepo()){location='../tips/index.html#';return false;}">google、百科等</a></span></li>
<li>无需帐号,无限制支持claude4.5,chatgpt5.1, gemini 2.5 pro/flash, grok4等超过500个最新AI模型免费使用。(少部分地区需配合上一条技术)</li>
<li><a href="zh/search.md" onclick="if(notRepo()){location='../search/index.html#';return false;}">AI聊天可作为搜索引擎</a>,对复杂问询提供多种<a href="../input/index.html#">输入辅助</a>;不受剪贴板长度限制,<a href="../textprocess/index.html#">超长文本自由传</a> (AI输入或共享)。</li>
<li>微:不到250K。</li>
<li>威:无穷无尽的功能,使用增强后的html5可以实现任何本地应用功能。支持使用js脚本、url服务、shell命令、内部功能链接定制菜单/(新)按钮/手势; 远程数据皆可成网站。</li>
<li>便捷:AI聊天/图书/txt/词典/命令行/APP/webapp可作为搜索引擎使用。</li>
<li>快:手机越慢,脚本插件越多越明显。</li>
<li>高效:最少的操作,在线服务全自动(参看常用链接网页)。</li>
<li>极致优化:最少存储写操作,比如浏览器转到后台前配置变化如恢复成原样则无写操作。</li>
<li>地址栏支持命令行 ("!", 物理键盘支持更佳)</li>
<li>指定域名: 用户定义JS/CSS/HTML/显示前源码预处理,支持使用"siteextra/[domain.sanitizer]"对网页任意定制。</li>
<li>支持用户定义域名属性。</li>
<li>下载资源在线播放/预览/预处理。</li>
<li>独立切换网站登录、配置文件。</li>
<li>支持网站测试自动化脚本 (可用于app服务端测试)。支持crontab(闹钟、定时任务等)。</li>
</ul>
<h4 id="截屏">截屏</h4>
<p><img src="https://i.postimg.cc/rsL9G5N1/home1.png" alt=""><br>
<img src="https://i.postimg.cc/9QxJ3Rc2/globalcss.png" alt=""><br>
<img src="https://i.postimg.cc/VksDHBQ4/globaljs.png" alt=""><br>
<img src="https://i.postimg.cc/HLV3TYLy/longclick.png" alt=""><br>
<img src="https://i.postimg.cc/XJ58ysdN/option1.png" alt=""><br>
<img src="https://i.postimg.cc/0NFnQT6H/option2.png" alt=""></p>
<h4 id="软件功能">软件功能</h4>
<p>输出自定义页面大小PDF、矢量图长截屏、朗读、文本重排、嗅探、比价、翻译、视频解析、离线保存、阅读模式(推荐与脚本激活模式配合)、网址重定向至国内、多帐号切换、网盘离线下载、文件管理、webdav/http空间备份/恢复任何指定文件集、智能翻页、目录文件传送、网站独立设置(ua,禁用脚本,无图,激活脚本)、行编辑器、网络唤醒(Wake-on-LAN)。通过安装html5应用可预览/阅读本地或在线任意格式文件(pdf,djvu,epub,mdx/mdd,docx等)。</p>
<p>修仙小说里面有一种异能,叫做“成功可以复制”,只要成功一次,就能无限复制。超微浏览器中这种异能叫"超级书签"。成功使用时保存,需要时就可以无限恢复。</p>
<p>小书签(bookmarklet)再也不用手工输入,直接将小书签网站加入书签即可。运行时长按出菜单后选择“在新窗口中打开”,小书签将作用于最后一个窗口。</p>
<p>独创不良信息绝杀:阻止指定根域名的一切子域名、孙域名...,不良信息一网打尽。 支持根域名前缀、网址路径正则表达式。</p>
<p>独创脚本激活模式,脚本执行后被激活,此后自动作用于同类网址。</p>
<p>支持全局用户脚本/样式,可任意叠加,轻松切换。</p>
<p>支持网址特定脚本/样式,可轻松支持百万以上不同脚本。</p>
<p>支持自定义任意多个搜索引擎; 支持执行用户提供任何js文件; 支持用户定义任意多个useragent; 长按链接支持运行第三方程序; 长按链接支持运行用户js文件。</p>
<p>安装定制版Termux然后再安装超微浏览器(顺序不能错),可用地址栏作图(类似matlab功能)、超级计算器(无限精度/π的前万位或更多、无限函数、无限常量)、符号演算(解方程、分解因式、求积分导数)、离线字典查找等。譬如地址栏输入sin(x)**5就直接得到函数图形。利用好第三方代码,才能真正发挥出uWeb的潜能。</p>
<h4 id="ebrowser-for-windows-macos-and-linux"><a href="misc/ebrowser/README.md" onclick="if(notRepo()){location='../../en/ebrowserreadme/index.html#';return false;}">Ebrowser</a> for Windows, MacOS and Linux</h4>
<p>可看作超微浏览器台式机简易版,用于弥补普通浏览器访问痛点。</p>
-
分类多引擎搜索
diff --git a/zh/readme/index.html b/zh/readme/index.html
index 418b8754..87c855e9 100644
--- a/zh/readme/index.html
+++ b/zh/readme/index.html
@@ -52,8 +52,7 @@
超微浏览器 (uweb browser): 释放无尽威能,微、威、快、高效、极致优化
-Amazon appstore
-Galaxy.Store
+
超微浏览器下载及使用技巧
(镜像: grebe gitlab frama repo codeberg github render surge netlify pgs kinsta fleek pages bitbucket torapp torappv statichost maozi vercel 专用镜像...)
@@ -103,8 +102,8 @@
-Last Modified: 28 March 2026
-cleanup mirrors
+
Last Modified: 29 March 2026
+add search engines
diff --git a/zh/rjs/index.html b/zh/rjs/index.html
index c79da903..17fd1fb5 100644
--- a/zh/rjs/index.html
+++ b/zh/rjs/index.html
@@ -54,7 +54,8 @@
记住密码
极速网页
大型脚本可安装到"bookmarklet"目录下(长按js按钮):
-Eruda
+Translate
+
注意:文件名以"!"开头的大型脚本可以无视CSP装载其它远程脚本。
@@ -73,7 +74,7 @@
其中url可以为本地http脚本地址。譬如'https://l/app...' (本地html5应用或离线缓存)。此时,js脚本也可使用.link文件方式调用。
-Last Modified: 26 March 2026
+
Last Modified: 31 March 2026
markdown rjs to use marked
diff --git a/zh/sitemap.xml b/zh/sitemap.xml
index 0769898f..d6a40f3e 100644
--- a/zh/sitemap.xml
+++ b/zh/sitemap.xml
@@ -3,7 +3,7 @@
xmlns:xhtml="http://www.w3.org/1999/xhtml">
https://jamesfengcao.gitlab.io/uweb/zh/
- 2026-03-28T22:21:03+08:00
+ 2026-03-31T09:44:39+08:00
2024-04-02T11:46:25+08:00
https://jamesfengcao.gitlab.io/uweb/zh/rjs/
- 2026-03-26T08:34:24+08:00
+ 2026-03-31T09:44:39+08:00
2024-04-02T11:46:25+08:00
https://jamesfengcao.gitlab.io/uweb/zh/readme/
- 2026-03-28T22:21:03+08:00
+ 2026-03-29T19:15:49+08:00
Date: Wed, 1 Apr 2026 11:07:53 +0800
Subject: [PATCH 240/254] add translate.js to rjs.cfg
---
sitemap.xml | 2 +-
zh/index.xml | 4 ++--
zh/rjs/index.html | 6 +++---
zh/searchurl/txt/rjs.cfg | 2 +-
zh/sitemap.xml | 4 ++--
5 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/sitemap.xml b/sitemap.xml
index 7af88b5a..4f91d22b 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -11,7 +11,7 @@
https://jamesfengcao.gitlab.io/uweb/zh/sitemap.xml
- 2026-03-31T09:44:39+08:00
+ 2026-04-01T11:07:08+08:00
diff --git a/zh/index.xml b/zh/index.xml
index e0e0aeb4..ab442542 100644
--- a/zh/index.xml
+++ b/zh/index.xml
@@ -6,7 +6,7 @@
Recent content on 超微浏览器: 威、快、高效、极致优化
Hugo
zh
- Tue, 31 Mar 2026 09:44:39 +0800
+ Wed, 01 Apr 2026 11:07:08 +0800
-
配置浏览器特色服务
@@ -146,7 +146,7 @@
https://jamesfengcao.gitlab.io/uweb/zh/rjs/
Sun, 01 May 2022 00:00:00 +0000
https://jamesfengcao.gitlab.io/uweb/zh/rjs/
- <p><a href="../sitejs/index.html#">特定网址用户脚本</a></p>
<p><b>全局脚本</b>位于js子目录, 长按[☰]按钮配置。点击以下链<br>
接安装:<br>
<a target="_self" href="i:0hjs/记住密码.js:../searchurl/txt/passwdsave.js">记住密码</a><br>
<a target="_self" href="i:0hjs/极速网页.js:https://fastly.jsdelivr.net/npm/instant.page">极速网页</a></p>
<p><b>大型脚本</b>可安装到"bookmarklet"目录下(长按js按钮):<br>
<a target="_self" href="i:0hbookmarklet/translate.js:https://cdn.staticfile.net/translate.js/3.18.66/translate.js:%0Atranslate.service.use('client.edge');translate.listener.start();translate.execute();">Translate</a></p>
<p><a target="_self" href='i:0hbookmarklet/eruda.js:https://fastly.jsdelivr.net/npm/eruda:%0Aeruda.init()'>Eruda</a></p>
<p><a target="_self" href="i:0hbookmarklet/performance.js:https://fastly.jsdelivr.net/gh/micmro/performance-bookmarklet/dist/performanceBookmarklet.min.js">Performance</a><br>
<a target="_self" href="i:0hbookmarklet/移除覆盖物.js:../searchurl/bml/content/rmo.js">移除覆盖物</a></p>
<p>注意:文件名以"!"开头的大型脚本可以无视CSP装载其它远程脚本。</p>
<p><b>远程脚本</b>配置文件default.rjs样列如下,点击以下链接自动安装 (清空后台重启浏览器,长按搜索按钮,则弹出远程脚本菜单):</p>
<p><a href="i:04Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']">显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']</a></p>
<p><a href="i:04新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)">新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)</a></p>
<p><a href="i:04站内搜索:;open('i:15site:' + location.hostname)">站内搜索:;open('i:15site:' + location.hostname)</a></p>
<p><a href="i:04编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v">编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v</a></p>
<p>远程及小型脚本可安装到default.rjs文件中。远程脚本对CSP网站仍然有效。:<br>
<a target="_self" href="i:0gdefault.rjs:../searchurl/txt/rjs.cfg">点击安装背景图等</a></p>
<p>远程脚本配置文件default.rjs每行格式如下 (url部分支持js代码运算):<br>
[远程脚本名]:[返回url数组的javascript代码]</p>
<p>其中url可以为本地http脚本地址。譬如'https://l/app...' (<a href="../html5/index.html#">本地html5应用</a>或<a href="../offlinecache/index.html#">离线缓存</a>)。此时,js脚本也可使用<a href="../links/index.html#">.link文件</a>方式调用。</p>
+ <p><a href="../sitejs/index.html#">特定网址用户脚本</a></p>
<p><b>全局脚本</b>位于js子目录, 长按[☰]按钮配置。点击以下链<br>
接安装:<br>
<a target="_self" href="i:0hjs/记住密码.js:../searchurl/txt/passwdsave.js">记住密码</a><br>
<a target="_self" href="i:0hjs/极速网页.js:https://fastly.jsdelivr.net/npm/instant.page">极速网页</a></p>
<p><b>大型脚本</b>可安装到"bookmarklet"目录下(长按js按钮):<br>
<a target="_self" href="i:0hbookmarklet/translate.js:https://gitee.com/mail_osc/translate/raw/master/translate.js/translate.js:%0Atranslate.service.use('client.edge');translate.listener.start();translate.execute();">Translate</a></p>
<p><a target="_self" href='i:0hbookmarklet/eruda.js:https://fastly.jsdelivr.net/npm/eruda:%0Aeruda.init()'>Eruda</a></p>
<p><a target="_self" href="i:0hbookmarklet/performance.js:https://fastly.jsdelivr.net/gh/micmro/performance-bookmarklet/dist/performanceBookmarklet.min.js">Performance</a><br>
<a target="_self" href="i:0hbookmarklet/移除覆盖物.js:../searchurl/bml/content/rmo.js">移除覆盖物</a></p>
<p>注意:文件名以"!"开头的大型脚本可以无视CSP装载其它远程脚本。</p>
<p><b>远程脚本</b>配置文件default.rjs样列如下,点击以下链接自动安装 (清空后台重启浏览器,长按搜索按钮,则弹出远程脚本菜单):</p>
<p><a href="i:04Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to sentence:;let g='sentence';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to line:;let g='line';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);">Selection to paragraph:;let g='paragraph';getSelection().modify('move','forward',g);getSelection().modify('extend','backward',g);</a></p>
<p><a href="i:04显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']">显示数学公式:['https://fastly.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js']</a></p>
<p><a href="i:04新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)">新窗口打开链接:;let d=document;b=d.createElement('base');b.setAttribute('target','_blank');d.head.appendChild(b)</a></p>
<p><a href="i:04站内搜索:;open('i:15site:' + location.hostname)">站内搜索:;open('i:15site:' + location.hostname)</a></p>
<p><a href="i:04编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v">编辑器拼写检查:;let t=document.getElementsByTagName('textarea');let v=t[0].spellcheck;if(v==null)v=false;t[0].spellcheck=!v</a></p>
<p>远程及小型脚本可安装到default.rjs文件中。远程脚本对CSP网站仍然有效。:<br>
<a target="_self" href="i:0gdefault.rjs:../searchurl/txt/rjs.cfg">点击安装"e翻译"等</a></p>
<p>远程脚本配置文件default.rjs每行格式如下 (url部分支持js代码运算):<br>
[远程脚本名]:[返回url数组的javascript代码]</p>
<p>其中url可以为本地http脚本地址。譬如'https://l/app...' (<a href="../html5/index.html#">本地html5应用</a>或<a href="../offlinecache/index.html#">离线缓存</a>)。此时,js脚本也可使用<a href="../links/index.html#">.link文件</a>方式调用。</p>
-
CSS样式
diff --git a/zh/rjs/index.html b/zh/rjs/index.html
index 17fd1fb5..9b8e2c48 100644
--- a/zh/rjs/index.html
+++ b/zh/rjs/index.html
@@ -54,7 +54,7 @@
记住密码
极速网页
大型脚本可安装到"bookmarklet"目录下(长按js按钮):
-Translate
+Translate
@@ -68,13 +68,13 @@
站内搜索:;open('i:15site:' + location.hostname)
远程及小型脚本可安装到default.rjs文件中。远程脚本对CSP网站仍然有效。:
-点击安装背景图等
+点击安装"e翻译"等
远程脚本配置文件default.rjs每行格式如下 (url部分支持js代码运算):
[远程脚本名]:[返回url数组的javascript代码]
其中url可以为本地http脚本地址。譬如'https://l/app...' (本地html5应用或离线缓存)。此时,js脚本也可使用.link文件方式调用。
-Last Modified: 31 March 2026
+
Last Modified: 1 April 2026
markdown rjs to use marked
diff --git a/zh/searchurl/txt/rjs.cfg b/zh/searchurl/txt/rjs.cfg
index 85d11a9d..3bb9c942 100644
--- a/zh/searchurl/txt/rjs.cfg
+++ b/zh/searchurl/txt/rjs.cfg
@@ -1 +1 @@
-背景图:;{document.deepCss=function(a,b){if(!a||!a.style)return'';let c=b.replace(/\-([a-z])/g,function(a,b){return b.toUpperCase()});if(a.currentStyle)return a.style[c]||a.currentStyle[c]||'';let d=document.defaultView||window;return a.style[c]||d.getComputedStyle(a,'').getPropertyValue(b)||''};Array.prototype.indexOf=Array.prototype.indexOf||function(a,b){b=b||0;for(let c=this.length;bBackground images ');for(let f=0;f');d.write('