Created
May 15, 2025 11:35
-
-
Save cjean-fr/9e8ad730b5dccd894a73c021d4285350 to your computer and use it in GitHub Desktop.
Bookmarklets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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