- Copy the minified js content in this example
- Create a new bookmark
- In the "URL" field paste the copied text (ensuring it's prefixed with
javascript:
) - Add bookmark to your favorite toolbar/folder
- Highlight some text on the page
- Click the bookmarklet and follow the prompts
Last active
January 7, 2025 07:27
-
-
Save zaus/64e9b1e547244e4a21a77a617b31f0cc to your computer and use it in GitHub Desktop.
Bookmarklet - Replace in Selected Text
This file contains 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
(function() { | |
function getSelectionText() { | |
// https://stackoverflow.com/questions/5379120/get-the-highlighted-selected-text | |
var text = ""; | |
if (window.getSelection) { | |
text = window.getSelection().toString(); | |
} else if (document.selection && document.selection.type != "Control") { | |
text = document.selection.createRange().text; | |
} | |
return text; | |
} | |
var f = prompt("Find what? (regex)"), | |
r = prompt("Replace With?"), | |
i = getSelectionText(), | |
o = i.replace(new RegExp(f, 'gi'), r) | |
; | |
prompt("Copy the results", o); | |
})(); |
This file contains 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 e=prompt("Find what? (regex)"),t=prompt("Replace With?"),n=function(){var e="";return window.getSelection?e=window.getSelection().toString():document.selection&&"Control"!=document.selection.type&&(e=document.selection.createRange().text),e}().replace(new RegExp(e,"gi"),t);prompt("Copy the results",n)})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment