Created
October 19, 2024 07:27
-
-
Save AWtnb/e1502af921119b8033fbdf9ec8bb9cf8 to your computer and use it in GitHub Desktop.
bookmarklet to open repository from github pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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")}}()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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