2012-12-27 3 views
0

내가 크롬 웹 스토어에 Google 크롬 확장 프로그램을 제출하기 위해 노력하고있어,하지만 난 다음 오류 얻을 : 이것은 내의 manifest.json입니다Chrome 웹 스토어에 내 확장 프로그램을 제출할 수 없습니다 : '오류가 발생했습니다 : 잘못된 매니페스트입니다.'

An error occurred: Invalid manifest. If your manifest includes comments, please remove them as our gallery does not support them yet.

을 :

{ 
    "name": "IMGit Image Uploader", 
    "version": "1", 
    "description": "Easy and fast image uploading from a simple right click.", 
    "background": {"page": "imgit.html"}, 
    "icons": { 
     "16": "16.png", 
     "48": "48.png", 
     "128": "128.png" 
    }, 
    "permissions": ["contextMenus","tabs","http://*/*","https://*/*",], 
    "manifest_version": 2, 
} 

어도비 드림위버는 구문을 보여줍니다 두 번째 줄에 오류가 있습니다. 그 이유는 알 수 없습니다.

무엇이 잘못 되었나요?

+2

jslint.com을 사용하면 JSON 오류를 알려줍니다. – Barmar

답변

3

시도는 JSON에 의 당신이 모두 추가 쉼표를 제거하기 :

{ 
"name": "IMGit Image Uploader", 
"version": "1", 
"description": "Easy and fast image uploading from a simple right click.", 
"background": { 
    "page": "imgit.html" 
}, 
"icons": { 
    "16": "16.png", 
    "48": "48.png", 
    "128": "128.png" 
}, 
"permissions": [ 
    "contextMenus", 
    "tabs", 
    "http://*/*", 
    "https://*/*" 
], 
"manifest_version": 2 
} 

당신은 당신의 JSON 파일 here의 유효성을 검사 할 수 있습니다.