gpt4 book ai didi

json - ManifestV3 : "invalid value for web_accessible_resources" or "resources must be listed" errors

转载 作者:行者123 更新时间:2023-12-04 11:37:58 53 4
gpt4 key购买 nike

这是我第一次尝试编写 Chrome 扩展程序。我加了 "web_accessible_resources": ["images/icon.png"] manifest.json 因为我想从内容脚本访问图像。添加此行后,我收到错误“'web_accessible_resources[0]' 的值无效。
无法加载 list 。”我已经检查以确保文件路径正确,还有什么地方是我错的?
任何帮助表示赞赏。

{
"name": "Bookmark Checker",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"bookmarks",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches":["https://www.google.com/search?*"],
"js": ["content/content.js"]
}
],
...
"web_accessible_resources": ["images/icon.png"]
}

最佳答案

web_accessible_resources 的语法在 Manifest V3 中发生了变化:

"web_accessible_resources": [{ 
"resources": ["/images/icon.png"],
"matches": ["<all_urls>"]
}]
matches key 必须指定自 Chrome 89 以来在何处公开这些资源。

关于json - ManifestV3 : "invalid value for web_accessible_resources" or "resources must be listed" errors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66191143/

53 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com