Created
June 5, 2012 22:22
-
-
Save andyvanee/2878498 to your computer and use it in GitHub Desktop.
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
| function pluginsoff(){ | |
| defaults write com.apple.safari WebKitPluginsEnabled -bool false | |
| defaults write com.apple.safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2PluginsEnabled -bool false | |
| defaults write com.apple.safari com.apple.Safari.ReaderPageGroupIdentifier.WebKit2PluginsEnabled -bool false | |
| } | |
| function pluginson(){ | |
| defaults write com.apple.safari WebKitPluginsEnabled -bool true | |
| defaults write com.apple.safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2PluginsEnabled -bool true | |
| defaults write com.apple.safari com.apple.Safari.ReaderPageGroupIdentifier.WebKit2PluginsEnabled -bool true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment