如何在 Firefox 扩展中创建新选项卡并获取选项卡的元素
我想创建一个新的 Firefox 扩展,其中可以访问新的选项卡元素,特别是弹出窗口。
var win = Components.classes['@mozilla.org/appshell/window-mediator;1']
.getService(Components.interfaces.nsIWindowMediator)
.getMostRecentWindow('navigator:browser');
var a = win.gBrowser.selectedTab;
我想访问所有保持打开状态或将在新选项卡中打开的元素; 基本上我想知道如何访问新选项卡中的元素。
I want to create a new Firefox extension where the new tab elements can be accessed specially the popup.
var win = Components.classes['@mozilla.org/appshell/window-mediator;1']
.getService(Components.interfaces.nsIWindowMediator)
.getMostRecentWindow('navigator:browser');
var a = win.gBrowser.selectedTab;
I want to access all the elements which remains open or will open in the new tab in the new tab;
basically I want to know how to access the elements in the new tab.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的意思是你想访问选项卡中页面的DOM吗?如果是这样你可以使用:
Do you mean that you want to access the DOM of the page in the tab? If so you can use: