i have this json file
{
"manifest_version": 2,
"name": "my app",
"version": "1",
"app": {
"background": {
"scripts": ["main.js"]
}
},
"content_scripts": [
{
"css": ["css.css", "jquery-ui.css"],
"js": ["jquery-1.5.2.js", "jquery-ui.min.js", "jquery.jqprint-0.3.js"]
}
]
}
the main.js file
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
bounds: {
width: 800,
height: 800
}
});
});
the app installs in chrome extensions. it loads the index.html properly,the css loads fine but jquery is not working. what i am doing wrong here
thanks