Last active
January 17, 2025 07:08
-
-
Save mzyy94/1486bcd36d52c216b3b1c0bdc52241f0 to your computer and use it in GitHub Desktop.
[Safari] Mouse button 4/5 to Back/Forward
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
{ | |
"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