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

瀏覽次數:932 次
跳到第一則未讀訊息

smartobject

未讀,
2010年7月23日 凌晨4:56:022010/7/23
收件者: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

未讀,
2010年7月23日 清晨5:19:552010/7/23
收件者: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.
回覆所有人
回覆作者
轉寄
0 則新訊息