开发者

Switching tab in the Firefox extension

I want to know a tab event fo开发者_StackOverflow中文版r Firefox extension to capture the event of switching from new tab to the older tab. I want to know event for switching from the new tab to the old tab.


You can add an event listener:

gBrowser.addEventListener("select", function(event)
{
  // Tab switched, do something
}, false);


You are searching for the TabSelect event.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜