Chrome扩展程序:devtools面板可以收到一次性邮件吗?

时间:2017-01-23 15:58:47

标签: javascript google-chrome-extension google-chrome-devtools messages message-passing

在我的devtool.js代码中,我正在收听这样的一次性消息:

chrome.devtools.panels.create("TT's Automatron", "devtool/icon.ico", "devtool/panel.html",
  function(panel) {

    var panelconsole; 

    panel.onShown.addListener(function tmp(panel) {

        panel.onShown.removeListener(tmp); 
        panelconsole = panel;

        // this works
        chrome.runtime.sendMessage({type:'get-status'}, function(response) {
          panelconsole.write_queue(response.globalstatus);
        });;

        // this does not work - cannot listen to the same messages from popup.js 
        // as I do it in background.js
        chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {    
          alert();
        });    
    });    
  }
);

在代码中,我可以发送一次性消息,但无法收听一次性消息。即使发送了消息,也永远不会触发Alert()。在后台脚本中,chrome.runtime.onMessage.addListener()可以毫无问题地收听消息,为什么不在devtools中呢?

我正在阅读documentation但是没有收到一次性消息,只有会话连接。这是否意味着它不可能?

后台脚本中,我正在收听相同的消息并在那里工作:

// listening to the same messages as in devtools panel
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {

  alert('This works');

  switch(request.type) {

    // recognising different messages
    case "start-tron":    
      //  ..some code..       
      sendResponse({globalstatus: globalstatus});

      break;
   }
});

消息来自弹出脚本:

chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
  chrome.runtime.sendMessage({type: "start-tron", tabid:tabs[0].id});
});

也许我应该提一下,背景和 devtools 之间还有一个开放的长期会话连接:

var port = chrome.runtime.connect({name: 'automatron_console'});
port.onMessage.addListener(function(item) {
    // if reference exists - panel is open
    if (panelconsole) {
      panelconsole.write_log(item);
    }
});

那么为什么我不能在devtools.js中收听popup中的消息,因为我在background.js中这样做了?

1 个答案:

答案 0 :(得分:0)

documentation中没有直接注意到,在devtools面板中无法接收一次性消息,但是只提到了长期连接,所以我想  devtools 不支持一次性消息传递。

似乎可以发送一次性消息,如上面的脚本所示,但不能接收。

我们只能使用长期连接:

// creating communication port in devtool script
var devtools_connection = chrome.runtime.connect({name: 'devtools_connection'});

// listening to the port messages
devtools_connection.onMessage.addListener(function(request, sender, sendResponse) {
  // sending response back to what sent this message
  sendResponse('some response');
});

// sending messages to the port
devtools_connection.postMessage({msg: 'some message'});