1

我與代碼清單中第1版Chrome應用從V1轉換Chrome應用程式清單到V2

{ 
"name": "J-Tech", 
"version": "2", 
"icons": { "128": "icon.png" }, 
"app": { 
"urls": [ 
"http://www.j-tech-web.co.uk" 
], 
"launch": { 
"web_url": "http://www.j-tech-web.co.uk" 
} 
} 
} 

我不能找到一個教程,使其帶我的我的網站,任何人都可以告訴我怎麼

回答

1

這應該工作

 { 
    "name": "J-Tech", 
    "description": "sample Text", 
    "version": "2", 
    "manifest_version": "2", 
    "icons": 
    { 
     "128": "icon.png" 
    }, 

    "app": 
    { 
     "urls": 
    [ 
      "http://www.j-tech-web.co.uk" 
     ], 

     "launch": 
    { 
      "web_url": "http://www.j-tech-web.co.uk" 
     } 
    }, 

    "permissions": 
    [ 

    ] 
} 
+0

請解釋一下是什麼錯誤,爲什麼你的代碼修復它。 – 2012-12-09 18:34:13