无法识别的清单密钥 'icon'。 Chrome

Unrecognized manifest key 'icon'. Chrome

我正在 chrome 中编写一个简单的 hello world 扩展,虽然它加载了但为什么它会给我一个警告。扩展徽标也不存在。 我的图像与我的工作目录位于同一目录中。

{
    "manifest_version" : 2,
    "name": "Hello World",
    "version" : "1.0",
    "description" : "A hello world Extension",
    "icon" : {
        "128": "128icon.png",
        "48" : "48icon.png",
        "16" : "16icon.png"
    },


    "browser_action":{
        "default_icon": "16icon.png",
        "default_popup" : "popup.html"

    }


}

"icon"替换为"icons"