清单无效 JSON。行:18,列:2,尾随逗号不允许

Manifest is not valid JSON. Line: 18, column: 2, Trailing comma not allowed

{
  "name": "test",
  "version": "1.0.0",
  "description": "test",
  "icons": {"16":  "images/icon16.png",
            "24":  "images/icon24.png",
            "32":  "images/icon32.png",
            "128":  "images/icon128.png"},
  "permissions": [
    "https://*.wikipedia.com"
  ],
  "browser_action": {
      "default_title": "test",
      "default_icon": "images/icon128.png",
      "default_popup": "popup.html"
  },
  "manifest_version": 2,
}

您好! 这是我的测试扩展中的 manifest.json 文件。 每当我尝试在 Chrome 中导入它时,它都会说:"Manifest is not valid JSON. Line: 18, column: 2, Trailing comma not allowed"

我认为第 "manifest_version": 2, 行使用了不必要的逗号存在问题。