chrome.runtime.sendMessage({data: 'memory'},
function (data) {
console.log(data);
}
);
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
sendResponse({data: request.data});
return true;
}
});
不显示任何内容。
答案 0 :(得分:0)
如果您尝试使用sendResponse
,则目前无法使用:检查上游问题https://github.com/electron/electron/issues/16394。