2016-09-21 52 views
0

我最近在Google网上商店部署了我的第一个Chrome扩展程序。 我只能在统计数据中看到2个评分,并且没有像其他分机那样的括号内的用户。它只有2天。 我该怎么办?Chrome扩展程序统计信息不会显示

扩展链接: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

那么,根据这个SO question由Google员工回答,这需要一些时间,通常需要几天时间才能显示或更新Chrome扩展程序统计信息。 Here是另一位在Chrome扩展程序中显示统计信息时遇到延迟的用户。