当用户选择上下文菜单项时,我想向内容脚本发送消息。然后,内容脚本将根据消息根据需要格式化网页。
我无法这样做,我已经能够将问题找到负责发送消息的代码(在上下文菜单脚本中)或负责接收消息的代码(在内容脚本中)。
下面,我尝试提供试图复制问题的代码的简化版本:
{
"manifest_version": 2,
"name": "MCVE for SO",
"version": "1",
"description": "Demonstrate message passing from context menu to content script",
"author": "Nityesh Agarwal",
"permissions": [
"tabs",
"activeTab",
"contextMenus"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["markr.js"]
}
],
"background": {
"scripts": ["backgroundContextMenus.js"]
}
}
chrome.runtime.onInstalled.addListener(function(){
chrome.contextMenus.create({"title": "Testing",
"contexts": ["selection"],
"id": "testing"});
});
chrome.contextMenus.onClicked.addListener(function(info, tab){
console.log("testing..");
console.log("Before sending the bold message");
chrome.tabs.sendMessage(tab.id, {changeParameter: "bold"});
console.log("After sending the bold message");
});
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse){
console.log("Text toggled bold");
});
选择上下文菜单项后,console
会显示以下消息:
backgroundContextMenus.js:8测试..
backgroundContextMenus.js:9发送粗体消息之前
backgroundContextMenus.js:11发送粗体消息后
所以,你可能会注意到,没有日志说像
文字切换为粗体
这意味着markr.js
文件中的代码没有被执行。因此,我怀疑负责发送消息的代码一定有问题:chrome.tabs.sendMessage(tabs[0].id, {changeParameter: "bold"});
)
这是我尝试复制的另一个代码段,但它也提出了同样的问题 - https://stackoverflow.com/a/14473739/7082018
我无法弄清楚究竟是什么问题。如果有人可以帮我告诉我如何在上下文菜单和内容页面之间成功传递消息,那将是非常有帮助的。
答案 0 :(得分:0)
从this answer获取提示我修改了我的 backgroundContextMenus.js ,如下所示:
function ensureSendMessage(tabId, message, callback){
chrome.tabs.sendMessage(tabId, {ping: true}, function(response){
if(response && response.pong) { // Content script ready
chrome.tabs.sendMessage(tabId, message, callback);
} else { // No listener on the other end
console.log("Injecting script programmatically");
chrome.tabs.executeScript(tabId, {file: "markr.js"}, function(){
if(chrome.runtime.lastError) {
console.error(chrome.runtime.lastError);
throw Error("Unable to inject script into tab " + tabId);
}
// OK, now it's injected and ready
console.log("Sending msg now");
chrome.tabs.sendMessage(tabId, message, callback);
});
}
});
}
chrome.runtime.onInstalled.addListener(function(){
chrome.contextMenus.create({"title": "Testing",
"contexts": ["selection"],
"id": "testing"});
});
chrome.contextMenus.onClicked.addListener(function(info, tab){
ensureSendMessage(tab.id, {greeting: "hello"});
});
然后我修改了 markr.js ,如下所示:
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse){
if(request.ping){
sendResponse({pong: true});
return;
}
console.log("Text toggled bold");
});
现在控制台日志正是人们所期望的:
控制台日志:
markr.js:11文本切换为粗体
请记住,此日志是网页开发工具的控制台日志,而不是后台脚本的检查视图。