gpt4 book ai didi

javascript - manifest.json 的问题

转载 作者:行者123 更新时间:2023-12-02 13:46:55 25 4
gpt4 key购买 nike

我正在尝试为自己创建一个 chrome 扩展,但是,我遇到了一些困难。 **请注意,这是我的第一个扩展,因此我可能犯了一些愚蠢的错误。

打包我的扩展程序时,chrome 给我一个错误提示:

list 不是有效的 JSON。行:6,列:3,语法错误。

这是我的 JSON 代码:

{
"name" : "Hello!",
"version" : "1.0",
"manifest_version":2,
"description":""
"background": {
"scripts": ["change.js"]
},
"permissions":[
"background",
"http://*/*",
"https://*/*"
]
}

出现问题的行是:

"background": {

我还包含了我的change.js:

// ==UserScript==
// @name New Userscript
// @version 0.1
// @description try to take over the world!
// @author You
// @match www.youtube.com
// @grant none
// @run-at document-start
// ==/UserScript==

var td = document.querySelector('tr:nth-child(1)> td:nth-child(5)');
td.innerText = 'Georgia';

另外,change.js 是我在 tampermonkey 中编写的用户脚本。脚本中是否需要更改任何内容?

谢谢

最佳答案

"description":"" 之后添加一个逗号,如下所示:“描述”:“”,

使用 JSON 验证器,如 http://jsonlint.com/解决这些类型的 JSON 错误

关于javascript - manifest.json 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41325284/

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