Created
December 27, 2022 15:03
-
-
Save vimfn/6d759ee307c87c8aa484ea5643b18053 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
document.addEventListener('keydown', function(event) { | |
if (event.key === 'YOUR_KEYBINDING'') { | |
// Get the element with the class | |
var element = document.getElementsByClassName("text-sm-bold-1Dtt0R mentionButton-3C5YMI")[0]; | |
element.click(); | |
} | |
}); | |
// Well, After writing this script I came to know that there is some easy way to for turnign of the ping, you can just press shift, then click on reply, it wil not ping the user. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment