Chrome 웹 스토어에 새 Chrome 확장 프로그램을 만들려고 모든 것이 제대로 업로드되고 게시되는 것 같습니다.새 Chrome 확장 프로그램이 게시되었으며 테스트를 위해 다운로드하려고 할 때 깨졌습니다.
그러나 이제 확장 프로그램의 페이지를로드하려고하면 페이지가 깨집니다.
크롬은 나에게 콘솔에서이 오류 제공 :
POST https://chrome.google.com/webstore/ajax/detail?hl=en-US&gl=US&pv=20170811&mce=atf%2Cpii%2Crtr%2Crlb%2Cgtc%2Chcn%2Csvp%2Cwtd%2Cnrp%2Chap%2Cnma%2Cc3d%2Cncr%2Cctm%2Cac%2Chot%2Ceuf%2Cmac%2Cfcf%2Crma%2Crae%2Cshr%2Cesl%2Cigb&id=gpgcbiaclhpaiknckdfdpbjkdgfkimmo&container=CHROME&_reqid=706656&rt=j 404()
을 그리고 오류 메시지가 얻을 :
There was a problem loading the item. Please refresh the page and try again.
지금까지 내가 말할 수있는
, 내 manifest.json을이 올바른지를 :
{
"name": "Chinese Personalized Colors",
"version": "0.0.0.1",
"short_name": "CPC",
"manifest_version": 2,
"description": "Color code individual Chinese characters",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "file:///*/*", "\u003Call_urls>"],
"css": ["mystyles.css"],
"js": ["jquery-1.7.2.min.js", "highlight_class_version.js", "content.js"],
"all_frames": true
}
],
"permissions": ["storage", "http://*/*"],
"background": {
"scripts": ["dict.js", "main.js", "background.js"]
},
"browser_action": {
"default_title": "CPC"
},
"icons": {
"128": "cpc-128px.png",
"48": "cpc-48px.png",
"16": "cpc-16px.png"
},
"author": "My Name",
"web_accessible_resources": ["css/*", "js/*", "images/*"]
}
위의 모든 이미지와 모든 파일은 Google에 업로드 된 zip에 있습니다.
일부 사용자는 권장하는 조언이므로 로그 아웃하고 다시 로그인하려고 시도했습니다.
무엇이 잘못 될 수 있습니까? 앱이 제대로 작동하도록 오래 게시되지 않았을 수 있습니까? 스택 추적은 실제로별로 알려주지 않고 최근 업로드에서 어디서나 오류를 일으키는 문서를 찾을 수 없습니다.
로컬로 테스트 했습니까? – sabithpocker
네, 로컬에서 잘 작동합니다. –
로컬에서 올바르게 작동하면 파일 경로에 문제가있을 것입니다. 나는 지금 이것을 조사하고있다. – Mohammed