2016-09-21 94 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擴展程序中顯示統計信息時遇到延遲的用戶。