Unshorts:
javascript:(function(){location.href=location.href.replace('/shorts/','/watch?v=')})();
Took Unshorts a step further: remove all shorts from a page:
javascript:(function(){document.querySelectorAll("a").forEach((a)=>{if(a.href.includes('/shorts/')){a.remove();}});})();
Unshorts: