could not load extensions from <PATH> invalid value for app.url[0]

932 views
Skip to first unread message

smartobject

unread,
Jul 23, 2010, 4:56:02 AM7/23/10
to Chromium Apps
Hi,

Please help I am new to this.

I am using Dev Channel version of google chrome 6.0.472.0 dev.

I have one web site which I want to convert into web app (not server
less)

I have created my manifest and icons and created a folder.

I have load google chrome dev mode and reached to "load unpacked.." by
following

http://code.google.com/chrome/apps/docs/developers_guide.html

but when I am trying to load that it is giving me the error "could not
load extensions from <PATH> invalid value for app.url[0]"?

What I am missing?

Here is my manifest.json

{
"name": "Local Balloon",
"description": "Search anything. Quick, Local and Free.",
"version": "1.0.0.0",
"app": {
"urls": [
"*://www.localballoon.com",
"*://www.localballoon.com"
],
"browse_urls": [
"http://www.localballoon.com/post/search"
],
"launch": {
"web_url": "http://www.localballoon.com/"
}
},
"icons": {
"24": "icon_24.png",
"128": "icon_128.png"
},

Thanks in advance for help..

shylor

unread,
Jul 23, 2010, 5:19:55 AM7/23/10
to Chromium Apps
You have the same URL 2 times in a row might be one issue. Also I
believe you need a slash at the end of all your URLs.

{
"name": "Local Balloon",
"description": "Search anything. Quick, Local and Free.",
"version": "1.0.0.0",
"app": {
"urls": [
"*://www.localballoon.com/"
],
"browse_urls": [
"http://www.localballoon.com/post/search/"
],
"launch": {
"web_url": "http://www.localballoon.com/"
}
},
"icons": {
"24": "icon_24.png",
"128": "icon_128.png"
},

I really do not understand why /post/search is a browser url. It is
covered under the app url.
Reply all
Reply to author
Forward
0 new messages