Opera使用Google URL Shortener有一些不方便的地方,所以改为is.gd,好处是可以在右键菜单新增一个项,直接把链接发送到is.gd生成短网址,而且生成网址后会自动打开is.gd页面并focus到新生成的网址,然后直接ctrl-c就能复制。
如果要从address bar生成短网址,仍然需要从is.gd先create search,然后自定义一个快捷键就行了。
如果要在menu中添加,就在menu.ini中的 [Link Popup Menu] 下加入
Item, "Shorten URL"=Go to page, "http://is.gd/create.php?url=%l&shorturl;=&opt;=0",,,Dummy
其中 Shorten URL 是menu中的名称,而 url=%l 中的 %l 就是所选择的链接,而Dummy是为了在menu中不显示图标。
而在 [Document Popup Menu] 中添加
Item, "Shorten URL"=Go to page, "http://is.gd/create.php?url=%u&shorturl;=&opt;=0",,,Dummy
就能把当前页面的地址生成短网址。区别在于 url=%u 而不是 %l,表示当前页面网址。
还有一种情况是选中一段文字,这段文字是网址的形式但是不带链接,不能点击,这样要在 [Hotclick Popup Menu] 中添加
Item, "Shorten URL"=Go to page, "http://is.gd/create.php?url=%t&shorturl;=&opt;=0",,,Dummy
也就是 url=%t,表示所选择的文字。