2016-09-21 4 views
0

최근 Google 웹 스토어에 첫 번째 크롬 확장 프로그램을 배포했습니다. 통계에서 2 개의 평점 만 볼 수 있으며 다른 확장자와 같이 대괄호 안에있는 사용자는 볼 수 없습니다. 그것은 단지 2 일이었다. 어떻게해야합니까?크롬 확장 통계가 표시되지 않습니다.

확장 링크 :이 도움이 경우 매니페스트 파일을 첨부 MarkIt chrome extension

:

{ 
"name": "MarkIt - Text Highlighter and Manager for Web", 
"version": "0.0.3", 
"manifest_version": 2, 
"background": { 
    "scripts": ["js/background.js"], 
    "persistent": false 
}, 
"permissions": [ 
     "storage","notifications" 
    ], 
"content_scripts": [ 
    { 
     "matches": ["http://*/*", "https://*/*"], 
     "css": [ "css/highlight.css" ], 
     "js": ["js/jquery.js","js/jquery.highlight-5.js","js/content.js"] 
    } 
], 
"browser_action": { 
"default_title": "MarkIt", 
"default_popup": "popup.html" 
}, 
"short_name": "MarkIt", 
"description": "Highlight lines of text across the webpages using this extension.", 
"icons": {"16": "css/icon/icon_16.png", 
     "48": "css/icon/icon_48.png", 
     "128": "css/icon/icon_128.png"} 

}

답변

0

음, Google 직원 대답이 SO question에 따르면, 시간이 좀 걸립니다, 일반적으로 크롬 확장 통계가 표시되거나 업데이트되는 일 수입니다. Here은 Chrome 확장 프로그램에서 통계를 표시하는 데 지연이있는 사용자입니다.

관련 문제