Skip to content

Instantly share code, notes, and snippets.

@gchristian
Created January 12, 2016 04:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gchristian/dcad97ef1098ef84fd22 to your computer and use it in GitHub Desktop.
Save gchristian/dcad97ef1098ef84fd22 to your computer and use it in GitHub Desktop.
chrome management settings for shared machines - blocks extension install and force installs Drive so google apps don't break.
<?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>AutoFillEnabled</key>
<false/>
<key>BookmarkBarEnabled</key>
<true/>
<key>ExtensionInstallBlacklist</key>
<array>
<string>*</string>
</array>
<key>ExtensionInstallForcelist</key>
<array>
<string>apdfllckaahabafndbhieahigkjlhalf;http://clients2.google.com/service/update2/crx</string>
</array>
<key>ExtensionInstallWhitelist</key>
<array></array>
<key>HideWebStorePromo</key>
<true/>
<key>HomepageIsNewTabPage</key>
<false/>
<key>HomepageLocation</key>
<string>http://www.d64.org/</string>
<key>PasswordManagerEnabled</key>
<false/>
<key>RestoreOnStartup</key>
<integer>0</integer>
<key>SyncDisabled</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment