Compare commits

...

2 commits

Author SHA1 Message Date
James Feng Cao
88c107828b enhance url bundles i:1b with callback 2023-06-01 21:46:11 +08:00
James Feng Cao
7d27ea2485 config: add downloadpath 2023-06-01 16:22:41 +08:00
58 changed files with 115 additions and 43 deletions

View file

@ -5,6 +5,7 @@
<link>/en/_posts/</link>
<description>Recent content in _posts on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/en/_posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Offline resources</title>

View file

@ -4,6 +4,7 @@
<title>Categories on uweb browser: unlimited power</title>
<link>/en/categories/</link>
<description>Recent content in Categories on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator><atom:link href="/en/categories/index.xml" rel="self" type="application/rss+xml" />
<generator>Hugo -- gohugo.io</generator>
<language>en</language><atom:link href="/en/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View file

@ -51,7 +51,8 @@
<p><a href="https://releases.pagure.org/uweb/">pagure</a></p>
<h4 id="main-featuresreadmeindexhtml"><a href="../readme/index.html">Main features</a></h4>
<h4 id="change-logs">Change logs</h4>
<p>1004: bookmarklet &quot;Show as html&quot; to support clipboard site &quot;netcut.cn&quot;.<br>
<p>1006: Advanced configuration: add download path<br>
1004: bookmarklet &quot;Show as html&quot; to support clipboard sites such as &quot;netcut.cn&quot;.<br>
998: <a href="../rjs/index.html">Bookmarklets</a> to support CSP sites.<br>
991: <a href="../redirect/index.html">global url redirection</a> support.<br>
988: <a href="../adblock_domain/index.html">hosts</a> file to support response headers.<br>
@ -79,8 +80,8 @@
</ul>
</div>
<p>Last Modified: 26 May 2023<br>
add udrop<br>
<p>Last Modified: 1 June 2023<br>
enhance i:b1 with callback url<br>
<pre></pre>
</p>
<script>

View file

@ -1,7 +1,7 @@
<!doctype html>
<html>
<head>
<meta name="generator" content="Hugo 0.111.3">
<meta name="generator" content="Hugo 0.112.3">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../style.css" type="text/css" />

View file

@ -5,6 +5,7 @@
<link>/en/</link>
<description>Recent content on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/en/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Offline resources</title>
@ -210,7 +211,8 @@ sourceforge
powerfolder
udrop
pagure
Main features Change logs 1004: bookmarklet &amp;quot;Show as html&amp;quot; to support clipboard site &amp;quot;netcut.cn&amp;quot;.
Main features Change logs 1006: Advanced configuration: add download path
1004: bookmarklet &amp;quot;Show as html&amp;quot; to support clipboard sites such as &amp;quot;netcut.cn&amp;quot;.
998: Bookmarklets to support CSP sites.
991: global url redirection support.
988: hosts file to support response headers.

View file

@ -295,15 +295,15 @@ Ex. i:92Host;209.216.230.240:https://news.ycombinator.com<br>
use &quot;i:0mi:92Host;209.216.230.240::https://news.ycombinator.com&quot; to visit the site with specified IP address.</p>
</li>
<li>
<p>i:b1[internal urls or javascript separated by newline]<br>
<p>i:b1[internal urls or javascript separated by &quot;%0A&quot;]<br>
Bundle of internal urls, if it is an &quot;i:0&quot; url, then it should have the following format:<br>
[title\n][msg\n][i:0url].</p>
[title]%0A[msg]%0A[optional callback url%0A][i:0url].</p>
</li>
</ul>
</div>
<p>Last Modified: 19 April 2023<br>
support .js files under &#39;css&#39; folder<br>
<p>Last Modified: 1 June 2023<br>
enhance i:b1 with callback url<br>
<pre>i:56 urls support CTRL_A to CTRL-Z
</pre>
</p>

View file

@ -1,5 +1,5 @@
let labels = ["<a href='https://jamesfengcao.codeberg.page/en/redirect/index.html'>Global redirect url</a>","Default font","Cursive","Fantasy","Fixed","Sans-Serif","Serif"];
let names = ["redirecturl","font","cursive","fantasy","fixed","sansserif","serif"];
let labels = ["<a href='https://jamesfengcao.codeberg.page/en/redirect/index.html'>Global redirect url</a>","Download path (Requires option 'Download to SDCARD')","Default font","Cursive","Fantasy","Fixed","Sans-Serif","Serif"];
let names = ["redirecturl","downloadpath","font","cursive","fantasy","fixed","sansserif","serif"];
let d=document;
@ -15,6 +15,7 @@ let sa = [`<head><meta charset="utf-8"><meta name="viewport" content="width=devi
</datalist>
<form onsubmit="let d=document;let f=d.forms[0];d.location.href='i:0i/data/data/info.torapp.uweb/files/config.html:'
+f.redirecturl.value+
'&'+ f.downloadpath.value+
'&'+ f.font.value+
'&'+ f.cursive.value +
'&'+ f.fantasy.value +
@ -25,9 +26,10 @@ let sa = [`<head><meta charset="utf-8"><meta name="viewport" content="width=devi
function gen(text) {
let strs = text.split('\n');
let i=0;
sa.push("<label>"+labels[i]+"<input type='text' name='"+names[i]+"' value='"+strs[i]+"'/></label>");
for (i = 1; i < labels.length; i++){
let i;
for (i=0; i<2; i++)
sa.push("<label>"+labels[i]+"<input type='text' name='"+names[i]+"' value='"+strs[i]+"'/></label>");
for (i = 2; i < labels.length; i++){
sa.push("<label>"+labels[i]+"<input list='family' type='text' name='"+names[i]+"' value='"+strs[i]+"'/></label>");
}

View file

@ -5,7 +5,7 @@
%5%
%6%
%7%
%8%

View file

@ -3,7 +3,7 @@
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>/en/_posts/</loc>
<lastmod>2023-05-25T14:58:48+08:00</lastmod>
<lastmod>2023-06-01T21:43:03+08:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="zh"
@ -58,7 +58,7 @@
/>
</url><url>
<loc>/en/</loc>
<lastmod>2023-05-26T21:38:08+08:00</lastmod>
<lastmod>2023-06-01T21:43:03+08:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="zh"
@ -71,7 +71,7 @@
/>
</url><url>
<loc>/en/links/</loc>
<lastmod>2023-04-19T10:00:46+08:00</lastmod>
<lastmod>2023-06-01T21:43:03+08:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="zh"
@ -113,7 +113,7 @@
/>
</url><url>
<loc>/en/topposts/</loc>
<lastmod>2023-05-26T21:38:08+08:00</lastmod>
<lastmod>2023-06-01T16:31:02+08:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="zh"
@ -210,7 +210,7 @@
/>
</url><url>
<loc>/en/changelog/</loc>
<lastmod>2023-05-26T15:47:44+08:00</lastmod>
<lastmod>2023-06-01T16:31:02+08:00</lastmod>
</url><url>
<loc>/en/sitemap/</loc>
<lastmod>2023-02-01T09:52:11+08:00</lastmod>

View file

@ -5,6 +5,7 @@
<link>/en/tags/adblock/</link>
<description>Recent content in adblock on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Mon, 20 Mar 2023 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/adblock/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Hosts files</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/clipboard/</link>
<description>Recent content in clipboard on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/clipboard/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Text selection</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/css/</link>
<description>Recent content in css on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 28 Jan 2023 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/css/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>JS/CSS/HTML/preprocessing for domains</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/curl/</link>
<description>Recent content in curl on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Mon, 24 Aug 2020 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/curl/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Custom file handling</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/</link>
<description>Recent content in Tags on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>redirection</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/javascript/</link>
<description>Recent content in javascript on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 28 Jan 2023 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/javascript/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>JS/CSS/HTML/preprocessing for domains</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/pc/</link>
<description>Recent content in PC on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/pc/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Text selection</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/redirection/</link>
<description>Recent content in redirection on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/redirection/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Resource redirection</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/search-engine/</link>
<description>Recent content in search engine on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Mon, 10 Jan 2022 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/search-engine/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Search engine files</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/ssh/</link>
<description>Recent content in ssh on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/ssh/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Text selection</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/tdict/</link>
<description>Recent content in tdict on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sun, 06 Sep 2020 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/tdict/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Tools</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/termux/</link>
<description>Recent content in termux on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/termux/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Text selection</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/tools/</link>
<description>Recent content in tools on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sun, 06 Sep 2020 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/tools/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Tools</title>

View file

@ -5,6 +5,7 @@
<link>/en/tags/windows/</link>
<description>Recent content in Windows on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/en/tags/windows/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Text selection</title>

View file

@ -5,6 +5,7 @@
<link>/en/topposts/</link>
<description>Recent content in Topposts on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Tue, 07 Mar 2023 00:00:00 +0000</lastBuildDate><atom:link href="/en/topposts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Search engines</title>
@ -65,7 +66,8 @@ sourceforge
powerfolder
udrop
pagure
Main features Change logs 1004: bookmarklet &amp;quot;Show as html&amp;quot; to support clipboard site &amp;quot;netcut.cn&amp;quot;.
Main features Change logs 1006: Advanced configuration: add download path
1004: bookmarklet &amp;quot;Show as html&amp;quot; to support clipboard sites such as &amp;quot;netcut.cn&amp;quot;.
998: Bookmarklets to support CSP sites.
991: global url redirection support.
988: hosts file to support response headers.

View file

@ -4,7 +4,8 @@
<title>Unlists on uweb browser: unlimited power</title>
<link>/en/unlist/</link>
<description>Recent content in Unlists on uweb browser: unlimited power</description>
<generator>Hugo -- gohugo.io</generator><atom:link href="/en/unlist/index.xml" rel="self" type="application/rss+xml" />
<generator>Hugo -- gohugo.io</generator>
<language>en</language><atom:link href="/en/unlist/index.xml" rel="self" type="application/rss+xml" />
<item>
<title></title>
<link>/en/readme/</link>

View file

@ -4,14 +4,14 @@
<sitemap>
<loc>en/sitemap.xml</loc>
<lastmod>2023-05-26T21:38:08+08:00</lastmod>
<lastmod>2023-06-01T21:43:03+08:00</lastmod>
</sitemap>
<sitemap>
<loc>zh/sitemap.xml</loc>
<lastmod>2023-05-27T09:26:51+08:00</lastmod>
<lastmod>2023-06-01T21:36:50+08:00</lastmod>
</sitemap>

View file

@ -5,6 +5,7 @@
<link>/zh/_posts/</link>
<description>Recent content in _posts on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/zh/_posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>重定向网址</title>

View file

@ -4,6 +4,7 @@
<title>Categories on 超微浏览器: 威、快、高效、极致优化</title>
<link>/zh/categories/</link>
<description>Recent content in Categories on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator><atom:link href="/zh/categories/index.xml" rel="self" type="application/rss+xml" />
<generator>Hugo -- gohugo.io</generator>
<language>zh</language><atom:link href="/zh/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View file

@ -1,7 +1,7 @@
<!doctype html>
<html>
<head>
<meta name="generator" content="Hugo 0.111.3">
<meta name="generator" content="Hugo 0.112.3">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../style.css" type="text/css" />

View file

@ -5,6 +5,7 @@
<link>/zh/</link>
<description>Recent content on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/zh/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>重定向网址</title>

View file

@ -1,6 +1,6 @@
Serif

21
zh/searchurl/config.html~ Normal file
View file

@ -0,0 +1,21 @@
Serif
<script src="config.js" charset="utf-8"></script>

View file

@ -1,5 +1,5 @@
let labels = ["<a href='https://jamesfengcao.codeberg.page/zh/redirect/index.html'>全局重定向网址</a>","网页默认字体族","cursive字体族","Fantasy字体族","Fixed字体族","Sans-Serif字体族","Serif字体族"];
let names = ["redirecturl","font","cursive","fantasy","fixed","sansserif","serif"];
let labels = ["<a href='https://jamesfengcao.codeberg.page/zh/redirect/index.html'>全局重定向网址</a>","下载目录(选项'下载至可卸存储'下生效)","网页默认字体族","cursive字体族","Fantasy字体族","Fixed字体族","Sans-Serif字体族","Serif字体族"];
let names = ["redirecturl","downloadpath","font","cursive","fantasy","fixed","sansserif","serif"];
let d=document;
@ -15,6 +15,7 @@ let sa = [`<head><meta charset="utf-8"><meta name="viewport" content="width=devi
</datalist>
<form onsubmit="let d=document;let f=d.forms[0];d.location.href='i:0i/data/data/info.torapp.uweb/files/config.html:'
+f.redirecturl.value+
'&'+ f.downloadpath.value+
'&'+ f.font.value+
'&'+ f.cursive.value +
'&'+ f.fantasy.value +
@ -25,9 +26,10 @@ let sa = [`<head><meta charset="utf-8"><meta name="viewport" content="width=devi
function gen(text) {
let strs = text.split('\n');
let i=0;
sa.push("<label>"+labels[i]+"<input type='text' name='"+names[i]+"' value='"+strs[i]+"'/></label>");
for (i = 1; i < labels.length; i++){
let i;
for (i=0; i<2; i++)
sa.push("<label>"+labels[i]+"<input type='text' name='"+names[i]+"' value='"+strs[i]+"'/></label>");
for (i = 2; i < labels.length; i++){
sa.push("<label>"+labels[i]+"<input list='family' type='text' name='"+names[i]+"' value='"+strs[i]+"'/></label>");
}

View file

@ -5,7 +5,7 @@
%5%
%6%
%7%
%8%

View file

@ -3,7 +3,7 @@
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>/zh/_posts/</loc>
<lastmod>2023-05-23T08:22:59+08:00</lastmod>
<lastmod>2023-06-01T21:36:50+08:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
@ -29,7 +29,7 @@
/>
</url><url>
<loc>/zh/</loc>
<lastmod>2023-05-27T09:26:51+08:00</lastmod>
<lastmod>2023-06-01T21:36:50+08:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
@ -74,7 +74,7 @@
/>
</url><url>
<loc>/zh/tips/</loc>
<lastmod>2023-05-13T20:07:47+08:00</lastmod>
<lastmod>2023-06-01T21:36:50+08:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"

View file

@ -5,6 +5,7 @@
<link>/zh/tags/css/</link>
<description>Recent content in css on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sat, 28 Jan 2023 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/css/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>特定网址脚本、样式、额外html及预处理</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/curl/</link>
<description>Recent content in curl on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Mon, 24 Aug 2020 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/curl/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>利用文件预处理预览/查看/播放可下载资源</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/</link>
<description>Recent content in Tags on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>国外网址</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/javascript/</link>
<description>Recent content in javascript on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sat, 28 Jan 2023 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/javascript/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>特定网址脚本、样式、额外html及预处理</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/pc/</link>
<description>Recent content in PC on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/pc/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>操作选中(富)文本/元素</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/ssh/</link>
<description>Recent content in ssh on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/ssh/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>操作选中(富)文本/元素</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/tdict/</link>
<description>Recent content in tdict on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sun, 06 Sep 2020 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/tdict/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>工具汇总</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/termux/</link>
<description>Recent content in termux on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/termux/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>操作选中(富)文本/元素</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/tools/</link>
<description>Recent content in tools on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sun, 06 Sep 2020 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/tools/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>工具汇总</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/windows/</link>
<description>Recent content in Windows on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/windows/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>操作选中(富)文本/元素</title>

View file

@ -4,7 +4,8 @@
<title>下载 on 超微浏览器: 威、快、高效、极致优化</title>
<link>/zh/tags/%E4%B8%8B%E8%BD%BD/</link>
<description>Recent content in 下载 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator><atom:link href="/zh/tags/%E4%B8%8B%E8%BD%BD/index.xml" rel="self" type="application/rss+xml" />
<generator>Hugo -- gohugo.io</generator>
<language>zh</language><atom:link href="/zh/tags/%E4%B8%8B%E8%BD%BD/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>浏览器控制服务器下载资源</title>
<link>/zh/pcdown/</link>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/%E4%B8%8D%E8%89%AF%E4%BF%A1%E6%81%AF%E5%B1%8F%E8%94%BD/</link>
<description>Recent content in 不良信息屏蔽 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Wed, 18 May 2022 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/%E4%B8%8D%E8%89%AF%E4%BF%A1%E6%81%AF%E5%B1%8F%E8%94%BD/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>利用用户自定义样式屏蔽不良信息</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/%E5%89%AA%E8%B4%B4%E6%9D%BF/</link>
<description>Recent content in 剪贴板 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Sat, 23 Apr 2022 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/%E5%89%AA%E8%B4%B4%E6%9D%BF/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>操作选中(富)文本/元素</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/%E5%9B%BD%E5%A4%96%E7%BD%91%E5%9D%80/</link>
<description>Recent content in 国外网址 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/%E5%9B%BD%E5%A4%96%E7%BD%91%E5%9D%80/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>重定向网址</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/%E6%90%9C%E7%B4%A2/</link>
<description>Recent content in 搜索 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 22 Sep 2020 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/%E6%90%9C%E7%B4%A2/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>视频播放小窍门</title>

View file

@ -4,7 +4,8 @@
<title>电视 on 超微浏览器: 威、快、高效、极致优化</title>
<link>/zh/tags/%E7%94%B5%E8%A7%86/</link>
<description>Recent content in 电视 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator><atom:link href="/zh/tags/%E7%94%B5%E8%A7%86/index.xml" rel="self" type="application/rss+xml" />
<generator>Hugo -- gohugo.io</generator>
<language>zh</language><atom:link href="/zh/tags/%E7%94%B5%E8%A7%86/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>电视直播</title>
<link>/zh/tvlive/</link>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/%E7%A6%BB%E7%BA%BF/</link>
<description>Recent content in 离线 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 15 Dec 2020 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/%E7%A6%BB%E7%BA%BF/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>离线下载</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/%E7%BD%91%E7%9B%98/</link>
<description>Recent content in 网盘 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 15 Dec 2020 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/%E7%BD%91%E7%9B%98/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>离线下载</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/%E8%B5%84%E6%BA%90/</link>
<description>Recent content in 资源 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 15 Dec 2020 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/%E8%B5%84%E6%BA%90/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>离线下载</title>

View file

@ -5,6 +5,7 @@
<link>/zh/tags/%E9%87%8D%E5%AE%9A%E5%90%91/</link>
<description>Recent content in 重定向 on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Tue, 11 Apr 2023 00:00:00 +0000</lastBuildDate><atom:link href="/zh/tags/%E9%87%8D%E5%AE%9A%E5%90%91/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>重定向网址</title>

View file

@ -72,7 +72,7 @@ UA为非默认时点击PC按钮将恢复UA为默认同时触发不保存UA
<p>方法1:</p>
<ul>
<li>
<p>点击一键安装<a href="i:b1Install bing chat UI%0A%0Ai:0hsitecache/www.bing.com/ai.html:../../en/searchurl/bingAI/bing.html%0AInstall bing compose UI%0A%0Ai:0hsitecache/www.bing.com/write.html:../../en/searchurl/bingAI/write.html%0AInstall bing Draw UI%0A%0Ai:0hsitecache/www.bing.com/draw.html:../../en/searchurl/bingAI/draw.html%0AConfig hosts%0A空格后为魔法域名请按需修改%0Ai:0ghosts::www.bing.com;Access-Control-Allow-Origin;https://www.bing.com mybing2.xn--xyza.top%0a%0Ai:52:https://www.bing.com/ai.html%0Ai:52:https://www.bing.com/write.html%0Ai:52:https://www.bing.com/draw.html">必应AI</a></p>
<p>点击一键安装<a href="i:b1%0AInstall bing chat UI%0A%0Ai:0hsitecache/www.bing.com/ai.html:../../en/searchurl/bingAI/bing.html%0AInstall bing compose UI%0A%0Ai:0hsitecache/www.bing.com/write.html:../../en/searchurl/bingAI/write.html%0AInstall bing Draw UI%0A%0Ai:0hsitecache/www.bing.com/draw.html:../../en/searchurl/bingAI/draw.html%0AConfig hosts%0A空格后为魔法域名请按需修改%0Ai:0ghosts::www.bing.com;Access-Control-Allow-Origin;https://www.bing.com mybing2.xn--xyza.top%0a%0Ai:52:https://www.bing.com/ai.html%0Ai:52:https://www.bing.com/write.html%0Ai:52:https://www.bing.com/draw.html">必应AI</a></p>
</li>
<li>
<p>或者分步安装:<br>
@ -98,8 +98,8 @@ UA为非默认时点击PC按钮将恢复UA为默认同时触发不保存UA
</ul>
</div>
<p>Last Modified: 13 May 2023<br>
update bingAI/js/optionsSets.js<br>
<p>Last Modified: 1 June 2023<br>
enhance i:b1 with callback url<br>
<pre></pre>
</p>
<script>

View file

@ -5,6 +5,7 @@
<link>/zh/topposts/</link>
<description>Recent content in Topposts on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Thu, 28 Jul 2022 00:00:00 +0000</lastBuildDate><atom:link href="/zh/topposts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>浏览器多搜索引擎一键直达</title>

View file

@ -4,7 +4,8 @@
<title>Unlists on 超微浏览器: 威、快、高效、极致优化</title>
<link>/zh/unlist/</link>
<description>Recent content in Unlists on 超微浏览器: 威、快、高效、极致优化</description>
<generator>Hugo -- gohugo.io</generator><atom:link href="/zh/unlist/index.xml" rel="self" type="application/rss+xml" />
<generator>Hugo -- gohugo.io</generator>
<language>zh</language><atom:link href="/zh/unlist/index.xml" rel="self" type="application/rss+xml" />
<item>
<title></title>
<link>/zh/readme/</link>