Skip to content

Instantly share code, notes, and snippets.

@martinsfjoao
Created January 19, 2021 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save martinsfjoao/d8bcb69e7a8320a51a8a41d351101493 to your computer and use it in GitHub Desktop.
Save martinsfjoao/d8bcb69e7a8320a51a8a41d351101493 to your computer and use it in GitHub Desktop.
Deepl Translate Bookmarklet
javascript: (function () {
let textToTranslate = prompt("Enter the text you want to translate:");
if (textToTranslate != null) {
window.location = 'https://www.deepl.com/en/translator#en/es/' + encodeURIComponent(textToTranslate);
}
else {
window.location = 'https://www.deepl.com/';
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment