问HN:分享你最喜欢的书签小工具

3作者: takinola22 天前原帖
以下是我经常使用的几个书签小工具: 发布当前网页到 Hacker News: ```javascript javascript:window.location="http://news.ycombinator.com/submitlink?u="+encodeURIComponent(document.location)+"&t="+encodeURIComponent(document.title) ``` 查找 Archive.is 链接: ```javascript javascript:window.location="http://archive.is/newest/"+document.location ```
查看原文
Here are a couple bookmarklets I find myself using often:<p>Post current web page to HN<p><pre><code> javascript:window.location=&quot;http:&#x2F;&#x2F;news.ycombinator.com&#x2F;submitlink?u=&quot;+encodeURIComponent(document.location)+&quot;&amp;t=&quot;+encodeURIComponent(document.title) </code></pre> Find Archive.is link<p><pre><code> javascript:window.location=&quot;http:&#x2F;&#x2F;archive.is&#x2F;newest&#x2F;&quot;+document.location</code></pre>