Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome Required value 'version' is missing or invalid. It must be between 1-4 dot-separated integers each between 0 and 65536

I have been trying to create a personalized theme, but every time I upload chrome says "required value 'version' is missing or invalid. It must be between 1-4 dot-separated integers each between 0 and 65536.' This is the first time I've tried this so I don't know what it is I have to change. Even if I did, what would I change it too. How can I fix this?

{
  "manifest_version": 2,
  "name": "Chrome Themes",
  "theme": {
    "images" : {
      "theme_frame" : "Images/Cracked Dimensions.jpg",
      "theme_toolbar" : "Images/Cracked Dimensions.jpg",
      "theme_ntp_background" : "Images/Halloween Whopper.jpg",
    "theme_tab_background" : "Images/Halloween Whopper.jpg"}
    }
    ,"colors" : {
        "ntp_link": [118,17,25], 
    "ntp_text": [118,17,25], 
    "ntp_section_link": [118,17,25], 
    "ntp_section_text": [51 , 55 , 58],
    "ntp_background": [51 , 55 , 58], 
    "frame": [51 , 55 , 58], 
    "toolbar": [51 , 55 , 58], 
    "tab_text": [118,17,25], 
    "tab_background_text": [51 , 55 , 58], 
    "bookmark_text": [118,17,25]
    },
    "tints" : {
                "buttons" : [0.33, 0.5, 0.47],
                "frame_inactive": [0.50, 0.50, 0.50], 
                "frame_incognito_inactive": [0.50, 0.50, 0.50] 
    },
    "properties" : {
        "ntp_background_alignment" : "center",
    "ntp_background_repeat": "no-repeat"
    }
  }
like image 997
Ynez Torres Avatar asked Dec 15 '22 11:12

Ynez Torres


1 Answers

This is the correct way to define "version" and "manifest_version"

"version": "1.0",
"manifest_version": 2,
like image 78
penguin Avatar answered Apr 10 '23 16:04

penguin