我最近在google网上商店部署了我的第一个Chrome扩展程序。 我只能在统计数据中看到2个评级,而在其他扩展名中没有括号中的用户。它只有2天。 我该怎么办呢?
附加清单文件以防有害:
{
"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 :(得分:0)
嗯,根据Google员工回答的这个SO question,需要一些时间,通常需要几天才能显示或更新Chrome扩展统计信息。 Here是另一位在Chrome扩展程序中显示统计信息的延迟用户。