Skip to content

Instantly share code, notes, and snippets.

@Jpsern
Created November 6, 2020 09:02
Show Gist options
  • Save Jpsern/9ef0d261a541b27d06bf15d0662e61a5 to your computer and use it in GitHub Desktop.
Save Jpsern/9ef0d261a541b27d06bf15d0662e61a5 to your computer and use it in GitHub Desktop.

full

javascript:(function(){
    const url=location.href.split('?')[0];
    location.href=url.split('#')[0];
})()

min

javascript:(function(){const url=location.href.split('?')[0];location.href=url.split('#')[0];})()
@Jpsern
Copy link
Author

Jpsern commented Jun 13, 2022

逆に特定のクエリを付けたければこうかな。

javascript:(function(){
    let url=location.href.split('?')[0];
    url=url.split('#')[0];
    location.href=`${url}?template=frontend.md`;
})()

@Jpsern
Copy link
Author

Jpsern commented Jun 13, 2022

コードゴルフするならこうかな。

javascript:(function(l){
    let url=l.href.split('?')[0];
    url=url.split('#')[0];
    l.href=`${url}?template=frontend.md`;
})(location)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment