Skip to content

Instantly share code, notes, and snippets.

@AntouanK
Forked from frabert/COPYING
Created April 20, 2022 12:18
Show Gist options
  • Save AntouanK/1fd01ed137349466cbc47d0c954da63a to your computer and use it in GitHub Desktop.
Save AntouanK/1fd01ed137349466cbc47d0c954da63a to your computer and use it in GitHub Desktop.
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)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment