firefox扩展:FireFox 4.0中的链接识别(不带href标签)

发布于 2024-11-07 22:59:54 字数 289 浏览 0 评论 0原文

Firefox 4.0 有一个新功能,它可以识别没有 href 标签(简单文本)的 URL。因此,如果您右键单击此类选定的文本,它将显示链接选项(即在新选项卡中打开链接...)。

我如何利用此功能(在何处编码以及编码内容)并访问所选文本(可能是链接)?

是否可以访问多个选定文本的字符串数组(每行一个潜在链接)?

目前,当用户右键单击链接时,会显示我的上下文菜单 Firefox-addon,但我需要在用户右键单击链接或潜在链接时显示它。

Firefox 4.0 has a new feature that it can recognize URLs which has no href tag (simple text). So if you right click on such a selected text it would show link options (i.e. open link in new tab...).

How can I leverage this feature (where and what to code) and access the selected text (which is potentially a link)?

Is it possible to access the sting array of multiple selected texts (one potential link per line)?

Currently my context menu Firefox-addon is shown when a user right click a link, nut I need it to be shown when the user right click on a link or a potential link.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↙温凉少女 2024-11-14 22:59:54

您应该使用非空、非空 gContextMenu.linkURL 属性(字符串)或非空 gContextMenu.linkURI 的文本。

if (!!gContextMenu.linkURL) {
  if (gContextMenu.onSaveableLink) {
    // regular link (supported protocol)
  else if (gContextMenu.onLink) {
    // regular link (external protocol)
  )
  else {
   // plain text link
  }
}

You should text for non-null, non-empty gContextMenu.linkURL property (string) or non-null gContextMenu.linkURI.

if (!!gContextMenu.linkURL) {
  if (gContextMenu.onSaveableLink) {
    // regular link (supported protocol)
  else if (gContextMenu.onLink) {
    // regular link (external protocol)
  )
  else {
   // plain text link
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文