设计一个Chrome主题,出了什么问题?

时间:2013-03-07 19:18:03

标签: json google-chrome-extension manifest google-chrome-theme

(所以,我是一名平面设计师/艺术家,我对任何类型的代码或脚本都不熟悉。)

在我的Chrome主题代码中,收到错误消息:

  

“无法从'E:\ Web \ dev \ theme \ dev \ Test'加载扩展名..Manifest无效JSON。行:7,列:4,语法错误。” < / p>

我不知道我在哪里出错,因为指定的语法错误是在空白处,如此代码示例所示:

    {
      "manifest_version": 2,
      "version": 2.0
      "name": "Test",
        "theme": {
          "images" : {
          "theme_frame" : "images/frame.png",
          "theme_toolbar" : "images/toolbar.png",
          "theme_ntp_background" : "images/polygons.png",
          "theme_tab_background" : "images/tab.png",
          "theme_ntp_attribution" : "images/theme_ntp_attribution.png"
        },
        "colors" : {
            "ntp_link": [255,255,255],
        "ntp_text": [255,255,255],
        "ntp_section_link": [255,255,255],
        "ntp_section_text": [10 , 17 , 27],
        "ntp_background": [10 , 17 , 27],
        "frame": [10 , 17 , 27],
        "toolbar": [10 , 17 , 27],
        "tab_text": [255,255,255],
        "tab_background_text": [10 , 17 , 27],
        "bookmark_text": [255,255,255]
        },
        "tints" : {
                    "buttons" : [0.33, 0.5, 0.47]
        },
        "properties" : {
            "ntp_background_alignment" : "bottom",
        "ntp_background_repeat": "no-repeat"
        }
      }
    }

那么,哪里出错?

1 个答案:

答案 0 :(得分:1)

你忘了把逗号放在行上

"version": 2.0

顺便说一下,您可以使用JSONLint来验证JSON。