Skip to content

Instantly share code, notes, and snippets.

@andyvanee
Created June 5, 2012 22:22
Show Gist options
  • Select an option

  • Save andyvanee/2878498 to your computer and use it in GitHub Desktop.

Select an option

Save andyvanee/2878498 to your computer and use it in GitHub Desktop.
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