manifest.json的问题

时间:2016-12-25 23:35:07

标签: javascript json google-chrome-extension

我正在尝试为自己创建一个chrome扩展,但是,我遇到了一些困难。 **领导这是我的第一次延期,所以我可能会犯一些愚蠢的错误。

在打包我的扩展程序时,chrome会给我一个错误说明:

Manifest是无效的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中编写的用户脚本。脚本中的任何内容都需要更改吗?

由于

1 个答案:

答案 0 :(得分:2)

"description":""之后添加逗号,如下所示: "description":"",

使用http://jsonlint.com/之类的JSON验证程序来解决这些类型的JSON错误