Chrome Managed Bookmark Title

Lion55
New Contributor

Can anyone help with JSON script line to change the name of Managebookmarks?  "ManagedBookmarks": { "type": "array", "title": "Bookmarks",

2 ACCEPTED SOLUTIONS

YanW
Contributor III

Not sure what you mean. Maybe like this?

 

{
	"title": "Google Chrome (com.google.Chrome)",
	"description": "Google Chrome Managed Settings",
	"properties": {
		"ManagedBookmarks": {
			"type": "array",
			"items": {
				"type": "object",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the bookmark."
					},
					"url": {
						"type": "string",
						"description": "URL for the bookmark."
					}
				}
			},
			"title": "Managed Bookmarks",
			"description": "Configures a list of managed bookmarks.",
			"links": [{
				"rel": "More information",
				"href": "https://cloud.google.com/docs/chrome-enterprise/policies/?policy=ManagedBookmarks"
			}],
			"property_order": 925
		}
    }
}

 

View solution in original post

FinnishViking
New Contributor
        <dict>
        	<key>toplevel_name</key>
        	<string>Change to whatever</string>
        </dict>

View solution in original post

5 REPLIES 5

YanW
Contributor III

Not sure what you mean. Maybe like this?

 

{
	"title": "Google Chrome (com.google.Chrome)",
	"description": "Google Chrome Managed Settings",
	"properties": {
		"ManagedBookmarks": {
			"type": "array",
			"items": {
				"type": "object",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the bookmark."
					},
					"url": {
						"type": "string",
						"description": "URL for the bookmark."
					}
				}
			},
			"title": "Managed Bookmarks",
			"description": "Configures a list of managed bookmarks.",
			"links": [{
				"rel": "More information",
				"href": "https://cloud.google.com/docs/chrome-enterprise/policies/?policy=ManagedBookmarks"
			}],
			"property_order": 925
		}
    }
}

 

AJPinto
Honored Contributor III

If you are unsure about xml, I suggest using something like iMazing Profile Editor to make your configuration profile then just upload it to Jamf.

 

https://imazing.com/profile-editor

Lion55
New Contributor

Thanks guys, but I mean to rename the folder of Managed Bookmarks, does anyone have a script for this renaming convention?

FinnishViking
New Contributor
        <dict>
        	<key>toplevel_name</key>
        	<string>Change to whatever</string>
        </dict>

Lion55
New Contributor

Thank you for  help @FinnishViking  @YanW all solutions worked