2015-12-04 90 views
1

当我尝试在https://chrome.google.com/webstore/developer/dashboard上载我的Chrome扩展程序.zip时,收到错误消息:“清单文件中缺少default_locale字段。”但是有default_locale定义。上传Chrome扩展程序 - default_locale错误

{ 
    "name": "xxx", 
    "author": "xxx", 
    "version": "1.0.0", 
    "description": "__MSG_appDesc__", 
    "default_locale": "pt", 
    "permissions": 
    [ 
    "bookmarks", 
    "storage", 
    "tabs" 
    ], 
    "browser_action": 
    { 
     "default_title": "xxxx", 
     "default_icon": "/img/icon.png", 
     "default_popup": "/html/services.html" 
    }, 
    "manifest_version": 2, 
    "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'" 
} 

什么问题?

回答