问HN:分享你最喜欢的书签小工具
以下是我经常使用的几个书签小工具:
发布当前网页到 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="http://news.ycombinator.com/submitlink?u="+encodeURIComponent(document.location)+"&t="+encodeURIComponent(document.title)
</code></pre>
Find Archive.is link<p><pre><code> javascript:window.location="http://archive.is/newest/"+document.location</code></pre>