gpt4 book ai didi

google-chrome - list .json :34:1: an object must end with '}'

转载 作者:行者123 更新时间:2023-12-05 01:22:57 25 4
gpt4 key购买 nike

我开发了一个扩展并尝试上传它。但它给出了错误:manifest.json:34:1: object must end with '}'.

任何帮助将不胜感激。这是 manifest.json 的内容:

{
"manifest_version" :2,
"name": "Text to Speech",
"version" :"1.0.0",
"description" :"Indian language text to speech extension. Developed under TDIL programme by TTS consortium",
"options_page": "options.html",
"browser_action": {
"default_icon": { // optional
"19": "images/text2voice.png" // optional
},
"default_title": "Indian language TTS", // optional; shown in tooltip
"default_popup": "popup.html" // optional
},
"icons": { "16": "images/t2v-48.png",
"48": "images/t2v-48.png",
"128": "images/t2v-128.png" },

"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"], //content script will be injected in all urls
"js": ["content_script.js"]
}
],

"permissions": [ //permitted to access following pages
"http://*/*",
"https://*/*",
"contextMenus",
"tabs"
]
}

最佳答案

您的评论,例如 //options 正在破坏您的 json。请尝试将 manifest.json 验证器(http://jsonlint.com)的全部内容放入并查看错误。

关于google-chrome - list .json :34:1: an object must end with '}' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22956323/

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