Skip to content

Instantly share code, notes, and snippets.

@hrfmmymt
Created November 21, 2016 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hrfmmymt/1777fafff3a26db5ef27eacff75b1271 to your computer and use it in GitHub Desktop.
Save hrfmmymt/1777fafff3a26db5ef27eacff75b1271 to your computer and use it in GitHub Desktop.
Backlog の通知を雑に title に突っ込む
let DOMNotifications = 0;
const title = document.title;
setInterval(() => {
DOMNotifications = document.querySelector("#globalNotificationsLink > span") ? document.querySelector("#globalNotificationsLink > span").innerHTML : 0;
document.title = "[" + DOMNotifications + "]" + title;
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment