Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am following the google chrome web app development on http://developer.chrome.com/trunk/apps/first_app.html and the web app is not launching. when i click on the app icon on the page it closes the tab. I have downloaded the sample apps and plugins from github but they too are not working when i look at the console i get this error, please not i have enabled experimental API's in chrome://flags.

Uncaught TypeError: Cannot read property 'onLaunched' of undefined 

I have updated my chrome browser to version 22.0.1229.79. My manifest.json file is

{
"name": "Hello World!",
"description": "My first packaged app.",
"manifest_version": 2,

"version": "0.1",
"app": {
    "background": {
        "scripts": ["background.js"]
    }
},
"icons": {
    "16": "calculator-16.png", 
    "128": "calculator-128.png"
}

}

And my background.js file

   chrome.app.runtime.onLaunched.addListener(function() {
    chrome.app.window.create('window.html', {
        'width': 400,
        'height': 500
    });
});

Can someone point me where am going wrong?

share|improve this question
I had a similar issue (see here) that seemed to be resolved when I rebooted the browser. I had been running many tabs and the browser had been open for a while. – Gene Golovchinsky Sep 28 '12 at 23:12
I ended up changing my manifest to look like this { "name": "Qlipe", "description": "Qlipe Chrome app", "manifest_version": 2, "version": "0.1", "app": { "launch": { "local_path": "index.html" } }, "icons": { "16": "Qlipe-16.png", "128": "Qlipe-128.png" }, "permissions": [ "http://www.qlipe.com/api/feed", "http://0.0.0.0:6543/api/feed", "unlimitedStorage" ] Note i removed the background js – Madawar Sep 29 '12 at 11:28
Interesting. I'll play with that when I get a chance. Have you tried specifying background.html and embedding the javascript in that? – Gene Golovchinsky Sep 29 '12 at 18:37

3 Answers

up vote 3 down vote accepted

The new-style packaged apps (with the background key in the app section in the manifest) are only supported in Chrome 23 (currently in the dev channel, soon to be in the beta channel) and later.

share|improve this answer
I assumed as much – Madawar Sep 30 '12 at 7:20
when can we expect this to hit stable, and what's the reccomended workaround until then? (to do background pages in a packaged chrome app) – Hayk Saakian Oct 10 '12 at 2:53
I guess a good workaroud is use this appjs.org – Inuart Nov 12 '12 at 23:42

You can follow the Chromium Development Calender here.

share|improve this answer

Get a dev/beta copy of Chrome that is at least version 23.

I also had to add the following line to the manifest.json file before I could get the sample to run

{
  ...,
  "minimum_chrome_version": "23",
  ...
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.