gpt4 book ai didi

javascript - Chrome 扩展 : Stack trace: TypeError: Cannot read property 'selectedtext' of undefined

转载 作者:行者123 更新时间:2023-12-03 12:20:21 27 4
gpt4 key购买 nike

我的 contentscript.js:

chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
if (request.ask === "selectedtext"){
sendResponse({selectedtext: window.getSelection().toString()});
}
});

我的背景.js:
function onClickHandler(info, tab) {
chrome.tabs.sendMessage(tab.id, {ask: "selectedtext"}, function(response) {
console.log(response.selectedtext);
});
};
chrome.contextMenus.onClicked.addListener(onClickHandler);

chrome.runtime.onInstalled.addListener(function() {
var contexts = ["selection"];
for (var i = 0; i < contexts.length; i++){
var context = contexts[i];
var title = "send the word to background.js";
var id = chrome.contextMenus.create({"title": title, "contexts":[context],"id": "context1" + context});
}
});

更新 :
{
"name" : "Send Data Plugin",
"version" : "1.1",
"description" : "A trivial usage example.",
"permissions": [
"browsingData", "contextMenus", "http://chromeplugin.sites.djangoeurope.com/"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"manifest_version": 2,
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["contentscript.js"]
}]
}

但是,一旦我点击 contextMenu send the word to background.js ,我在控制台中收到错误:
Stack trace: TypeError: Cannot read property 'selectedtext' of undefined

我究竟做错了什么?我用谷歌搜索并在这里阅读了一些问答,但似乎没有任何帮助..

最佳答案

好吧,您的错误意味着您的响应未定义。即没有数据从上下文页面返回。

您的 content.js 看起来不错,我认为最有可能的是没有从另一端通信的内容脚本。在您的内容脚本中放置一个 console.log 并确保它被命中。

您可能只需要刷新您正在与之通信的页面,因为内容脚本可能不是当前的?

关于javascript - Chrome 扩展 : Stack trace: TypeError: Cannot read property 'selectedtext' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24120575/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com