views:

78

answers:

2

If I call console.log('something'); from the popup page, or any script included off that it works fine.

However as the background page is not directly run off the popup page it is not included in the console.

Is there a way that I can get console.log()'s in the background page to show up in the console for the popup page?

is there any way to, from the background page call a function in the popup page?

Cheers.

+1  A: 

Hi Hailwood,

Any extension page (except content scripts) has direct access to the background page via chrome.extension.getBackgroundPage().

That means, within the popup page, you can just do:

chrome.extension.getBackgroundPage().console.log('foo');

To make it easier to use:

var bkg = chrome.extension.getBackgroundPage();
bkg.console.log('foo');

Now if you want to do the same within content scripts you have to use Message Passing to achieve that. The reason, they both belong to different domains, which make sense. There are many examples in the Message Passing page for you to check out.

Hope that clears everything.

Mohamed Mansour
Cheers, Message passing is perfect.
Hailwood
A: 

Throwing obvious answer here just in case. You know that you can open background page's console if you click on "background.html" link in the extensions list, right?

serg
Cheers, I am aware of this, however opening the background page directly does not invoke anything from the popup page.
Hailwood