Skip to content

Instantly share code, notes, and snippets.

@h43z
Last active April 15, 2026 22:48
Show Gist options
  • Select an option

  • Save h43z/f7d702a932242dbce68e89cbbfe74918 to your computer and use it in GitHub Desktop.

Select an option

Save h43z/f7d702a932242dbce68e89cbbfe74918 to your computer and use it in GitHub Desktop.
{
document.addEventListener("DOMContentLoaded", _=> {
const observer = new MutationObserver(() => {
console.log('document title got updated');
observer.disconnect();
document.title += ` ${document.URL}`;
observer.observe(document.querySelector('title'), { childList: true });
});
document.title += ` ${document.URL}`;
observer.observe(document.querySelector('title'), { childList: true });
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment