Last active
February 24, 2026 07:44
-
-
Save angelo-v/83d35b295c6394058551 to your computer and use it in GitHub Desktop.
Rename Tab Bookmarklet
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 title=prompt("New title?");document.title=title})(); |
simple and useful :) thanks
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
👍