Created
January 12, 2016 04:46
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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