# Show full URL
Show full website address.
- Tested on macOS:
- Monterey
- Parameter type: bool
# Set to true
Show full website URL
defaults write com.apple.safari "ShowFullURLInSmartSearchField" -bool "true" && killall Safari
# Set to false
(default value)
Don't show full website URL
defaults write com.apple.safari "ShowFullURLInSmartSearchField" -bool "false" && killall Safari
# Read current value
defaults read com.apple.safari "ShowFullURLInSmartSearchField"
# Reset to default value
defaults delete com.apple.safari "ShowFullURLInSmartSearchField" && killall Safari