当我在chrome开发人员仪表板上将更新上传到我的扩展程序时,它无法执行此操作并显示,
An error occurred: Failed to process your item. Chrome Web Store system error, please try again later.
Run Code Online (Sandbox Code Playgroud)
我将清单中的扩展版本从0.103更新为0.104,清单版本未更改(2).当我做出不需要任何额外许可的更改时,我没有对manifest.json进行任何进一步的更改.唯一更改的文件是plugin-min.js
在上传之前,我也在我的计算机上进行了本地测试
我的zip文件的内容: - icons(文件夹) - plugin-min.js - manifest.json
zip文件的总大小为20.6 KB.
有关需要进行哪些更改的任何线索?
使用angular-google-maps 1.0.18地图加载完全正常,问题增加了标记添加.包含标记的正方形在地图中变为灰色.我也试过使用其他问题中提出的解决方案.但它没有任何区别.有关如何解决此问题的任何线索.

代码:
var cities = [
{
city : 'Toronto',
desc : 'This is the best city in the world!',
lat : 43.7000,
long : -79.4000
},
{
city : 'New York',
desc : 'This city is aiiiiite!',
lat : 40.6700,
long : -73.9400
},
{
city : 'Chicago',
desc : 'This is the second best city in the world!',
lat : 41.8819,
long : -87.6278
},
{
city : 'Los Angeles',
desc : 'This city is …Run Code Online (Sandbox Code Playgroud)