How do I copy a tab's title in Chrome?
Solution 1:
Use a bookmarklet:
javascript:window.prompt("Copy to clipboard: Ctrl+C, Enter",document.title);
Credit for this window.prompt
trick goes to Jarek Milewski. This bookmarklet also works in ANY browser, even Netscape 3, and not just Chrome.
Solution 2:
Add a bookmark by hitting CtrlD or clicking on the star on the right end of the address bar.
Copy title.
Click on "Remove".
Solution 3:
This can be achieved through the page source code:
- Right click on the page and select 'View Source'
- Look for the <title> tag
- Select and copy the text.