Манифест недействителен в формате JSON. Строка: 12, столбец: 2, запятая не допускается - PullRequest
1 голос
/ 06 ноября 2019

Я пытаюсь создать свою собственную тему Google Chrome.

Манифест недопустим в формате JSON. Строка: 12, столбец: 2, запятая не допускается.

Может кто-нибудь сказать мне решение этой ошибки?

{
  "version": "2.6",
  "manifest_version": "2",
  "name": "theme",
  "theme": {
    "images": {
      "theme_frame": "images_endcard01",
      "theme_frame_overlay": "images_endcard01",
      "theme_toolbar": "images_endcard01",
      "theme_ntp_background": "images_endcard01",
      "theme_ntp_attribution": "images_bg_mayoi"
    },
    "colors": {
      "frame": [71, 105, 91],
      "toolbar": [207, 221, 192],
      "ntp_text": [20, 40, 0],
      "ntp_link": [36, 70, 0],
      "ntp_section": [207, 221, 192],
      "button_background": [255, 255, 255]
    },
    "tints": {
      "buttons": [0.33, 0.5, 0.47]
    },
    "properties": {
      "ntp_background_alignment": "bottom"
    }
  }
}
...