I'm writing my first Chrome packaged app and as per the documentation adding
"content_scripts": [
{
"js": ["app.js"]
}
],
this produces a chrome error that says: "There were warnings when trying to install this extension: 'content_scripts' is only allowed for extensions and legacy packaged apps, but this is a packaged app."
I have no idea what this means, but more importantly, I don't understand how I am to define the scripts in the js/ folder so that the app actually sees them and loads them.