Skip to content

Instantly share code, notes, and snippets.

@mis101247
Created March 3, 2023 19:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mis101247/8bc7e3d3ff16526418f0b33aef657a9f to your computer and use it in GitHub Desktop.
Save mis101247/8bc7e3d3ff16526418f0b33aef657a9f to your computer and use it in GitHub Desktop.
The bookmarklet commands that I frequently use.
javascript: (function () {
  var inputBox = document.querySelector("textarea");
  inputBox.value = "Please translate the above response into English.";
  var event = new Event("keydown");
  event.key = "Enter";
  event.keyCode = 13;
  inputBox.dispatchEvent(event);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment