No way around deleting that pesky 's' from 'https' in the share links.
I use this ahk snippet to paste copied share links in this forum with alt-Y. Once pasted, I still manually delete the 's'. There is prolly a way to do that in the script too, but I got bored before I got that far
!Y::
SetTitleMatchMode 2
IfWinActive, Cakewalk
{
Send, [tube]%clipboard%[/tube]
Return
}
SetTitleMatchMode 1
Return