0

我在 StackOverflow 上尝试了以下代码教程,但实际上无法在弹出窗口中接收活动选项卡 URL。

http://stackoverflow.com/questions/21043684/sending-data-from-popup-to-extension-js-not-working

http://stackoverflow.com/questions/21017681/how-to-send-data-from-popup-script-to-background-js-in-crossrider

我的目标是一旦用户在该选项卡上,就在弹出窗口中接收活动选项卡 URL。这个 URL 是对需要从数据库中获取的数据的引用,因此对于我的插件来说是必不可少的。

如果可以显示一个工作示例,我将不胜感激。

编辑

现在,当更改选项卡或更改URL时,我可以在弹出窗口中获取URL。但是,这对我没有用,因为只要用户单击弹出窗口,我就需要 URL,以便我可以获取活动选项卡的 URL 并对本地数据库运行查询以获取其上的数据。我怎样才能做到这一点?

谢谢!

4

2 回答 2

1

@infosec 通常,在弹出范围内,您无法直接确定选项卡何时变为活动状态。但是,在后台范围内,您可以使用 Crossrider appAPI.tabs.onTabSelectionChanged方法获取活动选项卡信息,然后使用appAPI.message.toPopup将信息发送到弹出窗口。

实现这一点的代码如下所示:

背景.js

appAPI.ready(function($) {
    // Get the Active Tab information
    appAPI.tabs.onTabSelectionChanged(function(tabInfo) {
        // Send it to the popup
        appAPI.tabs.toPopup({tabInfo: tabInfo});
    });
});

popup.html中的crossriderMain

function crossriderMain($) {
    appAPI.message.addListener(function(msg) {
        // Do something with the tab URL
        console.log('ActiveTab URL is ' + msg.tabInfo.tabUrl);
    });
}

[披露:我是 Crossrider 的员工]

于 2014-03-09T05:08:22.570 回答
1

我不确定如何在 SDK 中执行此操作。

但是您要做的是添加一个 TabSelect 事件侦听器。

这就是它在引导程序或覆盖插件中的完成方式。

function exampleTabSelected(event) {
  //tab was selected
  var tab = event.target; //this tab is the actual thingy you click in the tab bar at top
  var tabBrowser = tab.linkedBrowser; //this is the chrome browser within this tab
  var tabContentWindow = tabBrowser.contentWindow; //this is the HTML (or whatever type) contained inside the tab, this is where your website is
  var siteLocationObj = tabContentWindow.location;
  //location now includes properties like href, host, pathname, hash, and port
  //now put your the id of your id of the panel and you can do whatever to it
  var chromeWindow = tab.ownerGlobal; //this is the firefox browser window that the tab is in
  chromeWindow.document.getElementById('YOUR-PANEL-ID-HERE').querySelector('iframe').contentDocument.innerHTML = 'you are now on page: ' siteLocationObj.href;
}

// During initialisation
var container = gBrowser.tabContainer;
container.addEventListener("TabSelect", exampleTabSelected, false);

// When no longer needed
//container.removeEventListener("TabSelect", exampleTabSelected, false);
于 2014-03-08T08:59:35.527 回答