Skip to content

Instantly share code, notes, and snippets.

View luckycdev's full-sized avatar
🥶
hi

lucky luckycdev

🥶
hi
View GitHub Profile
@luckycdev
luckycdev / bookmarklet-youtube-search.js
Last active April 27, 2022 18:11 — forked from juanbrujo/YoutubeSearchBookmarklet.js
Search YouTube using a bookmarklet prompt
javascript:var a="https://www.youtube.com/results?search_query="; var b=prompt("What would you like to search on youtube?", "MrBeast"); if(b===""){alert("invalid response");}else if (b===" "){alert("invalid response");}else if(b!=null) {open(a+b);}
@luckycdev
luckycdev / bookmarklet-unblock-youtube-invidious.js
Last active December 13, 2022 17:07 — forked from gvenk/convert-all-youtube-urls-to-nocookie-bookmarklet.js
Unblock any youtube link with an https://redirect.invidious.io/ link. Default = vid.puffyan.us - easily changeable
javascript:var a="https://vid.puffyan.us";if(location.hostname==="www.youtube.com"){location.assign(a+location.pathname+location.search);}else if(location.hostname==="youtu.be"){location.assign(a+location.pathname+location.search);}else if(location.hostname==="www.youtube-nocookie.com"){location.assign(a+location.pathname+location.search);}else{alert("not on youtube");}