我的 Chrome 扩展程序的用户报告在 Pixel Slate 设备上安装它时出现问题。错误只是说“无效的清单”,并且无法安装扩展程序。
但是,在 Windows 或 OSX 设备上没有此类错误,根据我的检查,清单似乎是有效的。
有谁知道问题可能是什么?
清单如下:
{
"manifest_version": 2,
"name": "ProTABS - Tab Management for Pro's",
"short_name": "ProTABS",
"description": "\"I got 99 problems, but a tab ain't one.\" An intelligent tab manager for the everyday user.",
"version": "1.5.1",
"minimum_chrome_version": "55",
"icons": {
"16": "./static/icons/icon16.png",
"32": "./static/icons/icon32.png",
"48": "./static/icons/icon48.png",
"128": "./static/icons/icon128.png"
},
"browser_action": {
"default_popup": "frontend.html"
},
"background": {
"page": "backend.html",
"persistent": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+A",
"mac": "Command+Shift+A",
"linux": "Ctrl+Shift+A"
}
}
},
"permissions": ["tabs", "webNavigation", "storage", "alarms"]
}