簡體   English   中英

Chrome擴展程序安裝“清單無效”

[英]Chrome Extension installation “Invalid manifest”

我有一個Chrome擴展程序,可以很好地上傳到Chrome商店。 我當前的清單文件發布在下面。 如以前有關此問題的文章中所建議的那樣,將其保存為ANSI格式。 這是第三個變體,當我嘗試安裝它們時,它們都會產生相同的錯誤消息:“無效清單”。 沒有真實信息。 我已經嘗試等待24小時才能如先前帖子中所建議的那樣正確傳播,但沒有任何效果。

有人遇到過這個問題嗎?

擴展程序位於: https : //chrome.google.com/webstore/detail/bamboo-dialog-fixer/oelecpkhobhmbbdmehaoonkbkdodhdio?hl=zh-CN

{
  "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/*"
  }
}

謝謝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/*"]
  }
  ]
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM