Last active
April 16, 2021 17:30
-
-
Save karlhorky/65bb8496f151d3248d9eed26cc24e6f1 to your computer and use it in GitHub Desktop.
Dynamically Add App Badge To Favicon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See full userscript here: https://github.com/karlhorky/dotfiles/blob/main/userscripts/github-favicon-notification-badge.user.js