Skip to content

Instantly share code, notes, and snippets.

@watagashi
Last active June 29, 2020 20:30
Show Gist options
  • Save watagashi/ef74e52a494684b583b429eebf959598 to your computer and use it in GitHub Desktop.
Save watagashi/ef74e52a494684b583b429eebf959598 to your computer and use it in GitHub Desktop.
const ramboxOriginalTitle = document.title;
function ramboxUpdateTitle() {
document.title = `${
document.querySelectorAll('#reply.new, #direct.new').length > 0
? '(\u2022) '
: ''
}${ramboxOriginalTitle}`;
}
registerPlugin({
newMessageElement: ramboxUpdateTitle,
newDM: ramboxUpdateTitle,
switchTo: ramboxUpdateTitle
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment