Google chrome extension Google Chrome扩展——manifest.json中声明的图标赢得';t载荷

Google chrome extension Google Chrome扩展——manifest.json中声明的图标赢得';t载荷,google-chrome-extension,Google Chrome Extension,我正在构建第二个chrome扩展,无法在开发模式下加载图标;所有的东西都是镀铬的拼图。我已经对路径进行了三次检查,并且每个路径的大小都正确。有没有关于为什么不加载的想法?这是manifest.json manifest.json: { "manifest_version": 2, "name": "Wishlist", "short_name": "Add things to your wishlist.", "version": "1.0", "browser_acti

我正在构建第二个chrome扩展,无法在开发模式下加载图标;所有的东西都是镀铬的拼图。我已经对路径进行了三次检查,并且每个路径的大小都正确。有没有关于为什么不加载的想法?这是manifest.json

manifest.json:

{
  "manifest_version": 2,

  "name": "Wishlist",
  "short_name": "Add things to your wishlist.",
  "version": "1.0",

  "browser_action": {
    "default_title": "Wishlist",
    "default_icon": "icons/16x16.png"
  },

  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  }
}

请发布您的目录结构。关闭
chrome://extensions
,然后再次打开它,瞧,图标会出现在那里。@RobW尝试了,但没有成功;还尝试重新启动chrome。谢谢你!你能把内容压缩并放到网上吗?也许你真的忽略了文件名中的一个小错误。