Skip to content

Instantly share code, notes, and snippets.

@cjean-fr
Created May 15, 2025 11:35
Show Gist options
  • Save cjean-fr/9e8ad730b5dccd894a73c021d4285350 to your computer and use it in GitHub Desktop.
Save cjean-fr/9e8ad730b5dccd894a73c021d4285350 to your computer and use it in GitHub Desktop.
Bookmarklets
javascript:(function(){
var s = window.getSelection().toString();
if(!s){
alert("Sélectionnez d'abord du texte à surligner.");
return;
}
var url = window.location.href.replace(/#.*$/, '');
var encoded = encodeURIComponent(s).replace(/%20/g, '+');
window.location.href = url + '#:~:text=' + encoded;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment