作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 contentscript.js:
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
if (request.ask === "selectedtext"){
sendResponse({selectedtext: window.getSelection().toString()});
}
});
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"]
}]
}
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/
我是一名优秀的程序员,十分优秀!