English 中文(简体)
查明索要的表格
原标题:Identify tab that made request in Firefox Addon SDK
最佳回答

你们必须使用内部一揽子计划。 根据我可以告诉的内容,getTabForWindow()功能载于api-utils/lib/tabs/tab.js的包裹完全是你想要的。 未经测试的法典:

var tabsLib = require("sdk/tabs/tab.js");
return tabsLib.getTabForWindow(domWin.top);
问题回答

The API has changed since this was originally asked/answered... It should now (as of 1.15) be:

return require("sdk/tabs/utils").getTabForWindow(domWin.top);

截至Addon SDK版本1.13的变化:

var tabsLib = 要求(“tabs/tab.js”);

纽约总部

var tabsLib = require("sdk/tabs/helpers.js");

If anyone still cares about this:

Although the Addon SDK is being deprecated in support of the newer WebExtensions API, I want to point out that

var a_tab = 要求(“sdk/tabs/utils”)。

返回的物体不同于通常通过使用而得到的物体。

工人,载于Mod页。

例如,表格不会有背书的特性,而是会把类似于背书特性的财产联系起来。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签