Skip to content

Instantly share code, notes, and snippets.

@angelo-v
Last active February 24, 2026 07:44
Show Gist options
  • Select an option

  • Save angelo-v/83d35b295c6394058551 to your computer and use it in GitHub Desktop.

Select an option

Save angelo-v/83d35b295c6394058551 to your computer and use it in GitHub Desktop.
Rename Tab Bookmarklet
javascript:(function(){var title=prompt("New title?");document.title=title})();
@adithya-r-prabhu
Copy link

👍

@Vaisakhkm2625
Copy link

simple and useful :) thanks

@plu5
Copy link

plu5 commented Feb 24, 2026

Don't modify value if prompt was cancelled + put existing title as default value so that you can modify existing instead of starting to type from scratch:

javascript:(function(){var title=prompt("New title?",document.title);if (title!==null) document.title=title})();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment