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-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");}
javascript:open('https://virustotal.com/gui/search/'+location.host,'_blank','noreferrer,noopener');
@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-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-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-myflixer-search.js
Last active April 27, 2022 17:08
search for a show/movie on myflixer with a bookmarklet - easily changeable - myflixer bookmarklet
javascript:var a="https://myflixer.pw/search/";var b=prompt("What show/movie would you like to watch today?", "Lucifer");if (b===""){alert("invalid response");}else if (b===" "){alert("invalid response");} else if(b!=null){open(a+b);}
@luckycdev
luckycdev / bookmarklet-gogoanime-search.js
Last active April 27, 2022 18:29
search for an anime on gogoanime with a bookmarklet - easily changeable - gogoanime bookmarklet
javascript:var a="https://gogoanime.be/search/?keyword="; var b=prompt("What anime would you like to watch today?", "Naruto"); if(b===""){alert("invalid response");}else if(b===" "){alert("invalid response");}else if(b!=null) {open(a+encodeURI(b));}
@luckycdev
luckycdev / bookmarklet-searx-search.js
Last active April 27, 2022 18:31
search using searx with a bookmarklet - easily changeable - searx search bookmarklet
javascript:var a="https://searx.puffyan.us/search?q="; var b=prompt("What would you like to search on searx?", "Search"); if(b===""){alert("invalid response");}else if(b===" "){alert("invalid response")}else if(b!=null) {open(a+encodeURI(b));}
@luckycdev
luckycdev / bookmarklet-search-duckduckgo.js
Last active April 27, 2022 18:08
search using duckduckgo with a bookmarklet - easily changeable - duckduckgo search bookmarklet
javascript:var a="https://duckduckgo.com/?q="; var b=prompt("What would you like to search on duckduckgo?", "Search"); if(b===""){alert("invalid response");}else if (b===" "){alert("invalid response");}else if (b!=null){open(a+encodeURI(b));}
@luckycdev
luckycdev / bookmarklet-stackoverflow-search.js
Last active April 27, 2022 18:07
search using stackoverflow with a bookmarklet - easily changeable - stackoverflow search bookmarklet
javascript:var a="https://stackoverflow.com/search?q="; var b=prompt("What would you like to search on stackoverflow?", "How to..."); if(b===""){alert("invalid response");}else if (b===" "){alert("invalid response");} else if (b!=null){open(a+encodeURI(b));}