Source : Bookmarklet to append a string to the end of a URL par cazepeda-zz
Modifier la cible du favori pour qu’il pointe vers le lien :
javascript:window.location.href=window.location.href+'CHANGEZ MOI';
Cela est notamment utile pour ajouter des paramètres à un lien ou pour voir les Stargazers d’un projet sur GitHub.
javascript:window.location.href = window.location.href + '/stargazers';
Autre exemple :
javascript:window.location.href = window.location.href.includes(".com/") ? window.location.href.replace(".com/",".dev/") : window.location.href.replace(".dev/",".com/")