Skip to content

Instantly share code, notes, and snippets.

@mzyy94
Last active January 17, 2025 07:08
Show Gist options
  • Save mzyy94/1486bcd36d52c216b3b1c0bdc52241f0 to your computer and use it in GitHub Desktop.
Save mzyy94/1486bcd36d52c216b3b1c0bdc52241f0 to your computer and use it in GitHub Desktop.
[Safari] Mouse button 4/5 to Back/Forward
{
"description": "[Safari] Mouse button 4/5 to Back/Forward",
"manipulators": [
{
"type": "basic",
"from": {
"pointing_button": "button4"
},
"to": [
{
"repeat": false,
"key_code": "open_bracket",
"modifiers": [
"left_command"
]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com\\.apple\\.Safari$"
]
}
]
},
{
"type": "basic",
"from": {
"pointing_button": "button5"
},
"to": [
{
"repeat": false,
"key_code": "close_bracket",
"modifiers": [
"left_command"
]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com\\.apple\\.Safari$"
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment