3

Show HN: Favicons for HN

 3 years ago
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.
neoserver,ios ssh client

Favicons for HN · GitHub

Instantly share code, notes, and snippets.

Favicons for HN

// ==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) }


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK