在 Firefox 中的新选项卡中打开链接
我正在开发一个 Firefox 扩展。如何才能在新标签页中打开网页上的所有链接?
I am developing an Firefox extension. How can all the links on a webpage to be opened in a new tab?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Windows 上单击链接时按 Ctrl 键。在 OSX 上使用 cmd。
Press Ctrl while clicking on the link on Windows. Use cmd on OSX.
这通常是 Firefox 中处理新链接的可配置选项,因此它们可能会用它覆盖您的扩展。
但是...
该代码
将允许您单击出现的单词[示例网站],并且链接将在当前窗口中打开。
该代码
在新窗口/选项卡中打开链接。
唯一有点狡猾的事情是,目标现在显然已被 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
will allow you to click the appearing words [Example Website], and the link will open in the current window.
The code
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.
我找到了我所追求的东西。我想要gbrowser.addtab(this.href)。
I found what I was after. I wanted gbrowser.addtab(this.href).