Hi!
I am looking to change the display of an url https://example.com/?param1=true
to https://example.com/
without loading the new webpage.
I am coding an extension for a website giving us the ability to load settings through GET parameters, but my users want to be able to easily copy a clean URL without their own parameters in order to share it.
I tried the history.deleteUrl()
and history.addUrl()
methods but it actually only modifying the history, not the current URL.
Thanks.