消息回调不经常返回一个值 - Chrome扩展

时间:2014-10-07 18:09:40

标签: javascript node.js google-chrome-extension websocket

我正在构建一个chrome扩展,它通过websockets与nodejs服务器通信。其重点是跟踪内容的浏览历史记录。这一切似乎都有效,但偶尔(30%的时间)传递给onMessage.addListener的函数中的回调不会正确触发。我来告诉你代码:

background.js

var socket = io('http://localhost:3000/');

var tabLoad = function (tab) {
    socket.emit('page load', tab);
};

var tabUpdate = function (tabid, changeinfo, tab) {
    var url = tab.url;
    if (url !== undefined && changeinfo.status == "complete") {
        tab.user_agent = navigator.userAgent;
        tab.description = '';
        tab.content = '';

        socket.emit('insert', tab);
    }
};

socket.on('inserted', function(page){
    socket.emit('event', 'Requesting page content\n');
    //page = {tab: page, id: docs._id};
    chrome.tabs.sendMessage(page.tab_id, {requested: "content", page: page}, function(data) {
        socket.emit('content', data);
    });

});

try {
    chrome.tabs.onCreated.addListener(tabLoad);
    chrome.tabs.onUpdated.addListener(tabUpdate);
} catch(e) {
    alert('Error in background.js: ' + e.message);
}

内容脚本 - public.js

var messageHandler = function(request, sender, sendContent) {
    if (request.requested == "content") {
        var html = document.getElementsByTagName('html')[0].innerHTML;
        var data = {
            content: html,
            page: request.page
        };
        sendContent(data);
        return true;
    }
};

chrome.extension.onMessage.addListener(messageHandler);

问题是有时sendContent中的数据是未定义的,有时候它是正常的。任何想法如何调试这个或我做错了什么?

我尝试用硬编码的'test'字符串替换document.getElementsByTagName('html')[0].innerHTML,但这没有帮助。

像youtube / wikipedia这样的页面似乎永远不会起作用,而facebook / google则可以工作。

编辑:sendContent回调会在100%的时间内触发,只是传递给它的数据未定义。

编辑:这是清单文件

{
    "manifest_version": 2,

    "name": "Socket test",
    "description": "sockets are cool",
    "version": "1.0",

    "permissions": [
        "http://st-api.localhost/",
        "http://localhost:3000/",
        "tabs",
        "background",
        "history",
        "idle",
        "notifications"
    ],
    "content_scripts": [{
        "matches": ["*://*/"],
        "js": ["public/public.js"]
        //"run_at": "document_start"
    }],
    //"browser_action": {
    //    "default_icon": "logo.png",
    //    "default_popup": "index.html"
    //},
    "background": {
        //"page" : "background.html",
        "scripts": ["socket-io.js", "background.js"],
        "persistent": true
    }
}

1 个答案:

答案 0 :(得分:6)

首先,您理解sendContent在100%的时间内执行是错误的。

正如评论中所建议的,当出现错误时,sendMessage回调也会被执行;在您的情况下,此错误是"Receiving end does not exist"


错误在于您的内容脚本的清单声明。 match pattern "*://*/"只会 匹配httphttps URI上的顶级网页。即http://example.com/将匹配,而http://example.com/test则不会。

最简单的解决方法是"*://*/*",但我建议使用通用匹配模式"<all_urls>"


修复后,您的代码仍有一些改进。

  • 替换chrome.extension.onMessage(已弃用)并使用chrome.runtime.onMessage
  • 通过检查sendMessage,将chrome.runtime.lastError部分修改为更具弹性。尽管获得了广泛的许可,Chrome仍然无法将任何内容脚本注入某些页面(例如chrome://页面,Chrome网上应用店)
  • 请确保在内容脚本中使用"run_at" : "document_start",以确保在脚本准备好之前不会触发onUpdated "complete"