I'm trying to make a Chrome app that allows you to upload code to an Arduino (I know there's already some that do that, but I want to make my own) and when I try to run the app I get an error in background.js that says this:
I only have the basic window in my background.js though
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('window.html', {
'outerBounds': {
'width': 400,
'height': 500
}
});
});