Skip to content

Instantly share code, notes, and snippets.

@AWtnb
Created October 19, 2024 07:27
Show Gist options
  • Select an option

  • Save AWtnb/e1502af921119b8033fbdf9ec8bb9cf8 to your computer and use it in GitHub Desktop.

Select an option

Save AWtnb/e1502af921119b8033fbdf9ec8bb9cf8 to your computer and use it in GitHub Desktop.
bookmarklet to open repository from github pages
javascript:(function(){const l=document.location;const h=l.host;if(h.endsWith(".github.io")){const u=h.split(".")[0];const p=l.pathname;const nu=new URL("https://github.com/");nu.pathname=u+p;window.open(nu.toString(),"_blank")}}())
const l = document.location;
const h = l.host;
if (h.endsWith(".github.io")) {
const u = h.split(".")[0];
const p = l.pathname;
const nu = new URL("https://github.com/");
nu.pathname = u + p;
window.open(nu.toString(), "_blank");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment