1

chrome.webNavigation.onBeforeNavigate のコールバックを使用して、frameId や parentFrameId などのフレーム情報を取得したいと考えています。

バックグラウンド ページのコード:

chrome.webNavigation.onBeforeNavigate.addListener(onBeforeNaviCallback);

function onBeforeNaviCallback(detail){

    console.log("frameId" +detail.frameId); 

};//end of onBefore 

常にエラーがあります:

 Error in event handler for 'webNavigation.onBeforeNavigate': Cannot read property 'callback' of undefined TypeError: Cannot read property 'callback' of undefined
        at Event.dispatch_ (event_bindings:342:58)
        at dispatchArgs (event_bindings:214:26)
        at Object.chromeHidden.Event.dispatchEvent (event_bindings:223:7)
4

1 に答える 1