Posted on 09-16-2024 04:09 PM
HI,
I'm currently setting up the configuration profiles for our iPads and am trying to figure out if there is a way to have bookmarks preconfigured on the iPad for regular sites.
At this stage I have some webclips set up, but I'm trying to avoid having too many tiles on the iPad and would prefer them in bookmark form in either Chrome or Safari.
Any help would be greatly appreciated.
Solved! Go to Solution.
Posted on 09-19-2024 05:27 PM
When deploying the Chrome app, you can add the ManagedBookmarks dict and keys in the App Configuration section.
Here's an example for reference:
<dict>
<key>ManagedBookmarks</key>
<array>
<dict>
<key>toplevel_name</key>
<string>Danyonspinelli's Bookmarks</string>
</dict>
<dict>
<key>name</key>
<string>Jamf Nation</string>
<key>url</key>
<string>https://community.jamf.com</string>
</dict>
<dict>
<key>name</key>
<string>Jamf</string>
<key>url</key>
<string>https://jamf.com/</string>
</dict>
<dict>
<key>name</key>
<string>Apple</string>
<key>url</key>
<string>https://apple.com/</string>
</dict>
</array>
</dict>
You can find more information about ManagedBookmarks and other policies here.
Hope this helps!
Posted on 09-19-2024 05:27 PM
When deploying the Chrome app, you can add the ManagedBookmarks dict and keys in the App Configuration section.
Here's an example for reference:
<dict>
<key>ManagedBookmarks</key>
<array>
<dict>
<key>toplevel_name</key>
<string>Danyonspinelli's Bookmarks</string>
</dict>
<dict>
<key>name</key>
<string>Jamf Nation</string>
<key>url</key>
<string>https://community.jamf.com</string>
</dict>
<dict>
<key>name</key>
<string>Jamf</string>
<key>url</key>
<string>https://jamf.com/</string>
</dict>
<dict>
<key>name</key>
<string>Apple</string>
<key>url</key>
<string>https://apple.com/</string>
</dict>
</array>
</dict>
You can find more information about ManagedBookmarks and other policies here.
Hope this helps!
a month ago
Thank you so much, This has worked a treat on Chrome, I've tried replicating it on Safari but can't seem to get that to work, do you happen to know if it's possible to do the same thing with Safari?
a month ago
Glad it's worked for you!
To my knowledge there's no equivalent of this in Safari. Chrome has a much more robust management framework than Safari, so you'll probably need to use Chrome for this purpose.
a month ago
Thanks for your help! Appreciate it :)