Config

Google Chrome

Extensions Google Chrome

Autre

Ajouter une chaine de caractères à la fin d’un lien

Source : Bookmarklet to append a string to the end of a URL par cazepeda-zz

  1. Créer un favori
  2. Modifier la cible du favori pour qu’il pointe vers le lien :

     javascript:window.location.href=window.location.href+'CHANGEZ MOI';
    
  3. Sauvegarder le favori

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/")