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-minecraft-account-info.js
Last active April 27, 2022 18:18
check a minecraft account info bookmarklet
javascript:var a="https://axis.iaero.me/accinfo?username="; var b=prompt("What is the username of the Minecraft account you would like to look up?", "Notch"); var c="&format=json"; if(b===""){alert("invalid response")}else if(b===" "){alert("invalid response");} else if (b!=null){open(a+b+c);}
@luckycdev
luckycdev / bookmarklet-invidious-search.js
Last active April 27, 2022 18:14
Search YouTube using Invidious (a youtube unblocker) in a bookmarklet prompt - easily changeable Invidious link
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);}
@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);}
javascript:open('https://virustotal.com/gui/search/'+location.host,'_blank','noreferrer,noopener');
@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");}