如何在用户点击链接时自动选择文字?

时间:2011-07-23 05:08:29

标签: google-chrome hyperlink google-chrome-extension

在我的扩展程序中,用户可以选择文本并右键单击,这会显示包含扩展程序选项的菜单。一个简单的selectionText捕获所选文本:

ocd.selectionText

但是,如果用户在没有选择文本的情况下右键单击链接,则不会显示相同的菜单。

  • 当用户点击链接而不选择文字时,如何显示我的上下文菜单?
  • 如何同时捕获链接文本?

1 个答案:

答案 0 :(得分:2)

创建菜单时,您需要在参数中添加links上下文:

http://code.google.com/chrome/extensions/contextMenus.html#method-create

...然后你会得到linkUrl ( optional string ) If the element is a link, the URL it points to.