mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
ebrowser to use alt+<- / -> for page backward/forward
This commit is contained in:
parent
052cb9dad1
commit
d28fe3eed2
8 changed files with 191 additions and 31 deletions
|
@ -79,8 +79,8 @@ npm install ebrowser
|
|||
<li>CTRL+TAB: switch to next tab</li>
|
||||
<li>CTRL+SHIFT+TAB: switch to previous tab</li>
|
||||
<li>CTRL+W: close Tab</li>
|
||||
<li>CTRL+<-: go backward</li>
|
||||
<li>CTRL+->: go forward</li>
|
||||
<li>ALT+<-: go backward</li>
|
||||
<li>ALT+->: go forward</li>
|
||||
<li>CTRL+SHIFT+R: enable global redirection ("gredirect.json")</li>
|
||||
<li>CTRL+R: disable global redirection</li>
|
||||
<li>ESC: remove focus. similar to vi normal mode.</li>
|
||||
|
@ -107,6 +107,7 @@ npm install ebrowser
|
|||
</li>
|
||||
<li>ext [extension path]: load unpacked Chrome extension.</li>
|
||||
<li>gr [gredirect index]: global redirection with corresponding index. Use the first global redirection url if no argument. Disable global redirection with any index out of the range.</li>
|
||||
<li>js [js code] : execute JS code at OS level. Note: "javascript:..." is special url and thus works in the current web page, while ":js ..." commands can do any OS operations.</li>
|
||||
<li>nc/uc : No Cookie forwarding/Use Cookie forwarding with global redirection.</li>
|
||||
<li>nh/uh for No/Use url history.</li>
|
||||
<li>nj/uj for No/Use external Javascript files.</li>
|
||||
|
@ -119,7 +120,7 @@ npm install ebrowser
|
|||
</ul>
|
||||
</li>
|
||||
<li>"!" address bar commands<br>
|
||||
"!xx ..." evaluates "xx.js" with the whole address bar text as arguments[0].</li>
|
||||
"!xx ..." evaluates "xx.js" with the whole text as arguments[0].</li>
|
||||
</ul>
|
||||
<h4 id="commands-in-no-focus-mode-this-mode-is-similar-to-vi-normal-mode">Commands in no-focus mode (this mode is similar to vi Normal mode)</h4>
|
||||
<p>Pressing "ESC" to enter no-focus mode if not sure.</p>
|
||||
|
@ -140,6 +141,12 @@ npm install ebrowser
|
|||
<li>"proxy.json": name-<a href="https://www.electronjs.org/docs/latest/api/structures/proxy-config">ProxyConfig</a> pairs</li>
|
||||
<li>"uas.json" : name-useragent pairs</li>
|
||||
</ul>
|
||||
<h4 id="javascript-at-three-levels">Javascript at three levels</h4>
|
||||
<ul>
|
||||
<li>Web page: urls like "javascript:" or bookmarklet command ":bml" run in web page.</li>
|
||||
<li>Browser (or renderer process) : "!xx" evaluates "xx.js", which could manipulate address bar etc.</li>
|
||||
<li>OS level (or main process) : ":js" to execute the following js code with all OS APIs available.</li>
|
||||
</ul>
|
||||
<h4 id="new-usages">New usages</h4>
|
||||
<ul>
|
||||
<li>
|
||||
|
@ -166,7 +173,7 @@ npm install ebrowser
|
|||
<p>You can copy or modify the code/program under the terms of the GPL3.0 or later versions.</p>
|
||||
|
||||
</div>
|
||||
<p>Last Modified: 19 June 2024<br>
|
||||
<p>Last Modified: 24 June 2024<br>
|
||||
<br>
|
||||
<pre></pre>
|
||||
</p>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<description>Recent content on uweb browser: unlimited power</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Wed, 19 Jun 2024 09:41:18 +0800</lastBuildDate>
|
||||
<lastBuildDate>Mon, 24 Jun 2024 09:46:43 +0800</lastBuildDate>
|
||||
<atom:link href="/en/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Text selection/processing</title>
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
/>
|
||||
</url><url>
|
||||
<loc>/en/</loc>
|
||||
<lastmod>2024-06-19T09:41:18+08:00</lastmod>
|
||||
<lastmod>2024-06-24T09:46:43+08:00</lastmod>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="zh"
|
||||
|
@ -508,7 +508,7 @@
|
|||
/>
|
||||
</url><url>
|
||||
<loc>/en/ebrowserreadme/</loc>
|
||||
<lastmod>2024-06-19T09:41:18+08:00</lastmod>
|
||||
<lastmod>2024-06-24T09:46:43+08:00</lastmod>
|
||||
</url><url>
|
||||
<loc>/en/mirrors/</loc>
|
||||
<lastmod>2024-06-18T23:17:17+08:00</lastmod>
|
||||
|
@ -539,7 +539,7 @@
|
|||
/>
|
||||
</url><url>
|
||||
<loc>/en/unlist/</loc>
|
||||
<lastmod>2024-06-19T09:41:18+08:00</lastmod>
|
||||
<lastmod>2024-06-24T09:46:43+08:00</lastmod>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="zh"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue