//我尝试使用以下代码(取自MDN)重现上下文菜单的示例。
browser.contextMenus.create({
id: "log-selection",
title: "Log '%s' to the console",
contexts: ["selection"]
});
browser.contextMenus.onClicked.addListener(function(info, tab) {
if (info.menuItemId == "log-selection") {
console.log(info.selectionText);
}
});
问题是我无法在任何类型的控制台中看到日志:不在Web控制台或导航器控制台中(通过调试按钮I about:debugging
打开)。那么,我应该在哪里看到日志?
答案 0 :(得分:0)
答案 1 :(得分:0)
在浏览器控制台中,您可以从MAY + CTRL + ALT + I访问,而不是从关于:打开的那个访问:debugging