HI, I'm a long time Firefox extension developer and am trying to learn how to write extensions in chrome. I am using the "
Getting Started: Building a Chrome Extension" tutorial. I am playing around with the javascript to get a feel for different WebExtensions APIs.
I can put a debugging statement in my js to alert some value (i.e., 'alert(someVariable)' and it works as expected. But when I replace the alert with 'console.log(someVariable)' nothing get displayed in the console.
Am I missing something? I open the console with CTRL-SHIFT-J and it displays on the right side of the window, but none of my log messages ever appear.