首页 文章

Chrome扩展程序安装“无效的清单”

提问于
浏览
0

我有一个Chrome扩展程序可以上传到Chrome商店 . 我当前的清单文件发布在下面 . 它以ANSI格式保存,如此问题的先前帖子所示 . 这是第三个变体,当我尝试安装时它们都会产生相同的错误消息:“无效的清单” . 没有真正的信息 . 我已经尝试等待24小时,以便按照之前的帖子的建议正确传播,但是没有效果 .

有没有人遇到过这个问题?

扩展名在这里:https://chrome.google.com/webstore/detail/bamboo-dialog-fixer/oelecpkhobhmbbdmehaoonkbkdodhdio?hl=en-US

{
  "manifest_version": 2,
  "name": "Bamboo dialog fixer",
  "version": "1.3",
  "description": "This extension makes bamboo popup dialogs such a the performance dialogs fit the width of the screen.",
  "icons": {"128": "BambooHR_FullSize.png"},
  "content_scripts":
  {
    "css": "styles.css",
    "matches": "https://*.bamboohr.co.uk/*"
  }
}

1 回答

  • 2

    谢谢wOxxOm . 我必须搞砸了,尽管我以前在以前的场合认为我做对了 . 我重写了下面的文件并上传,现在可以使用了 .

    {
      "manifest_version": 2,
      "name": "Bamboo dialog fixer",
      "version": "1.4",
      "description": "This extension makes bamboo popup dialogs such a the performance dialogs fit the width of the screen.",
      "icons": {"128": "BambooHR_FullSize.png"},
      "content_scripts": [
      {
        "css": ["styles.css"],
        "matches": ["https://*.bamboohr.co.uk/*"]
      }
      ]
    }
    

相关问题