chrome.runtime.onSuspend.addListener未触发

时间:2014-12-05 07:48:37

标签: jquery google-chrome-extension chrome-native-messaging

我正在将Chrome扩展程序连接到本机消息传递应用程序。当chrome扩展暂停时,我需要进行一些清理。我正在尝试使用chrome.runtime.onSuspend.addListener,但它无法正常工作。这是我的代码: -

的manifest.json

"background": {"scripts": ["background.js"], 
               "persistent": false},   

background.js

    function Connect() {
        console.log("Connected");

        ext = chrome.runtime.connectNative('foxtrot');   
        chrome.runtime.onSuspend.addListener(function () {
            ext.postMessage({ message: "clean and close" });   
        });
    }

0 个答案:

没有答案