

Show HN: Favicons for HN
source link: https://gist.github.com/frabert/48b12088441f6195ea9292c2a5a77e3a
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Favicons for HN · GitHub
Instantly share code, notes, and snippets.
// ==UserScript== // @name Favicons for HN // @version 1 // @grant none // ==/UserScript==
for(let link of document.querySelectorAll('.titlelink')) { const domain = new URL(link.href).hostname const imageUrl = `https://icons.duckduckgo.com/ip3/${domain}.ico` const image = document.createElement('img') image.src = imageUrl image.width = 16 image.height = 16 image.style.paddingRight = '0.25em' image.style.paddingLeft = '0.25em' link.prepend(image) }
Recommend
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK