hello all, I am trying to create a managed profile for Chrome to block certain URLs. I've done this on Firefox with great success by creating a plist and deploying it via Application and Custom Settings Profile in Jamf. The issue is, the exact same method is not working for me on Chrome? Below is my plist/mobileconfig
This deploys with success, but no URLs are blocked and its missing from chrome://policy nothing in here but some deprecated stuff?
any help would be much appreciated. thanks!!!!
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>URLBlocklist</key>
<array>
<string>https://evernote.com/</string>
<string>https://evernote.com</string>
<string>https://www.evernote.com/Login.action</string>
<string>https://www.dropbox.com/</string>
<string>https://www.dropbox.com</string>
<string>https://www.dropbox.com/login</string>
<string>https://filezillapro.com/</string>
<string>https://filezillapro.com</string>
<string>https://filezilla-project.org/</string>
<string>https://drive.google.com/</string>
<string>https://drive.google.com/drive/my-drive/</string>
<string>https://drive.google.com/drive/my-drive</string>
</array>
</dict>
</plist>