在 Firefox 中的新选项卡中打开链接

发布于 2024-08-11 14:45:20 字数 47 浏览 6 评论 0原文

我正在开发一个 Firefox 扩展。如何才能在新标签页中打开网页上的所有链接?

I am developing an Firefox extension. How can all the links on a webpage to be opened in a new tab?

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

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

发布评论

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

评论(3

泪痕残 2024-08-18 14:45:21

在 Windows 上单击链接时按 Ctrl 键。在 OSX 上使用 cmd。

Press Ctrl while clicking on the link on Windows. Use cmd on OSX.

牛↙奶布丁 2024-08-18 14:45:20

这通常是 Firefox 中处理新链接的可配置选项,因此它们可能会用它覆盖您的扩展。

但是...

该代码

<a href="http://www.example.com/"> Example Website</a>

将允许您单击出现的单词[示例网站],并且链接将在当前窗口中打开。

该代码

<a href="http://www.example.com/" target="_blank"> Example Website</a>

在新窗口/选项卡中打开链接。

唯一有点狡猾的事情是,目标现在显然已被 W3C 弃用,这意味着如何(或是否)处理它通常取决于浏览器(和用户的偏好)。但对于那些在 Firefox 中设置了相应偏好的人来说,这应该可行。

That's usually a configurable option in Firefox to handle new links, so they may override your extension with that.

However...

The code

<a href="http://www.example.com/"> Example Website</a>

will allow you to click the appearing words [Example Website], and the link will open in the current window.

The code

<a href="http://www.example.com/" target="_blank"> Example Website</a>

Opens the link in a new window/tab.

The only mildly dodgy thing is that target is now apparently deprecated by the W3C, which means that it's generally up to the browser ( and the user's preferences) as to how (or even if) it is handled. But for people who have their preferences set accordingly - in Firefox - that should work.

梦中楼上月下 2024-08-18 14:45:20

我找到了我所追求的东西。我想要gbrowser.addtab(this.href)

I found what I was after. I wanted gbrowser.addtab(this.href).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文