Sometimes I need to copy many link addresses and I would like a hotkey for this. As far as I know there is no browser that supports that out of the box. Is it possible to customize this behavior?
I want to assign a shortcut or hotkey like "CTRL + c" (e.g. CTRL + d) to the function "Copy link address". In Chrome I need to rightclick the link and then select the option.
Is this possible in Chrome or Firefox? I would prefer those two but if it not possible I would accept another browser as well.
I came up with the following temporary solution for Chrome (Thanks to surfasb)
AutoHotKey Script
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#c::
Click right
Loop 5
{
Send {Down}
}
Send {Enter}
I would still prefer a browser customization, but until someone posts one I will go with this.