If you want to search something on normal youtube: https://gist.github.com/luckycdev/26ca83ec305727973bce24d1479fe7ef Easily change the link used to any other invidious link (https://redirect.invidious.io/)
Code:
javascript:
var a="https://vid.puffyan.us/search?q=";
var b=prompt("What would you like to search on youtube(unblocked)?", "MrBeast");
if(b==="")
{
alert("invalid response");
}
else if (b===" ")
{
alert("invalid response");
}
else if (b!=null)
{
open(a+b);
}
Bookmarklet:
javascript:var a="https://vid.puffyan.us/search?q="; var b=prompt("What would you like to search on youtube(unblocked)?", "MrBeast"); if(b===""){alert("invalid response");}else if (b===" "){alert("invalid response");}else if (b!=null) {open(a+b);}