Follow the steps below to properly set and deploy bookmarks to SPIN Safe Browser on supervised devices. This preference requires some knowledge of adding core manually into your MDMs ap configuration section of apps. Jamf's AppConfig Generator here allows some easy to select preferences but bookmarks fall into an advanced scenario that is not currently supported.
The following command deploys one bookmark to your iOS devices via your Mobile Device Management solution. Change the bolded text to customize the Bookmark parameters.
<key>Bookmarks</key>
<array>
<dict>
<key>title</key>
<string>SPIN Safe Browser website</string>
<key>url</key>
<string>https://spinsafebrowser.com</string>
<key>favicon</key>
<string></string>
</dict>
</array>
Want to deploy multiple bookmarks?
Simply copy this exact code as many times as you wish, right after the first block after the </dict> and set the correct parameters for the bookmark.
<dict>
<key>title</key>
<string>WebSite title 1</string>
<key>url</key>
<string>https://example1.com</string>
<key>favicon</key>
<string></string>
</dict>
Example of 3 Bookmarks
The italic text is what you will want to duplicate within the <array> and </array> tags.
<key>Bookmarks</key>
<array>
<dict>
<key>title</key>
<string>WebSite title 1</string>
<key>url</key>
<string>https://example1.com</string>
<key>favicon</key>
<string></string>
</dict>
<dict>
<key>title</key>
<string>Website title 2</string>
<key>url</key>
<string>https://www.example2.com</string>
<key>favicon</key>
<string></string>
</dict>
<dict>
<key>title</key>
<string>Website title 3</string>
<key>url</key>
<string>https://www.example3.com</string>
<key>favicon</key>
<string></string>
</dict>
</array>
Comments
0 comments
Please sign in to leave a comment.