Skip to content

Instantly share code, notes, and snippets.

@karlhorky
Last active April 16, 2021 17:30
Show Gist options
  • Save karlhorky/65bb8496f151d3248d9eed26cc24e6f1 to your computer and use it in GitHub Desktop.
Save karlhorky/65bb8496f151d3248d9eed26cc24e6f1 to your computer and use it in GitHub Desktop.
Dynamically Add App Badge To Favicon
const faviconHref = document.querySelector('[rel="icon"]').href;
const faviconSize = 32;
const canvas = document.createElement('canvas');
canvas.width = faviconSize;
canvas.height = faviconSize;
const context = canvas.getContext('2d');
const img = document.createElement('img');
img.onload = () => {
// Draw original favicon as background
context.drawImage(img, 0, 0, faviconSize, faviconSize);
// Draw notification circle
context.beginPath();
context.arc(
canvas.width - faviconSize / 2.5,
faviconSize / 2.5,
faviconSize / 2.5,
0,
2 * Math.PI,
);
context.fillStyle = '#161b22';
context.fill();
// Draw notification number
context.font = '18px "helvetica", sans-serif';
context.textAlign = 'center';
context.textBaseline = 'middle';
context.fillStyle = '#FFFFFF';
context.fillText('1', canvas.width - faviconSize / 2.5, faviconSize / 2.5);
// Replace favicon
const link = document.createElement('link');
link.setAttribute('rel', 'icon');
[...document.head.querySelectorAll('[rel~="icon"]')].forEach((element) =>
document.head.removeChild(element),
);
link.href = canvas.toDataURL('image/png');
document.head.appendChild(link);
};
img.crossOrigin = 'anonymous';
img.src = faviconHref;
@karlhorky
Copy link
Author

@karlhorky
Copy link
Author

And further discussion here: sindresorhus/notifier-for-github#235 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment