joelshepherd/tabliss

Link thumbnails not working

Opened this issue · 7 comments

Sbrjt commented

The link thumbnails for https://chat.openai.com and https://web.whatsapp.com are not working (display as ▶)

Screenshot (72)

Is it the case with everyone?

Quick question, @Sbrjt, how did you add the other urls with their proper thumbnail?

In icons, there's a website icon option. @theerfan

See

Yeah, weirdly enough that never works for me.

@theerfan Does it work after importing my settings?

tabliss.json
(Please change file name to tabliss.json as github didn't allow me to upload json)

Yeah it did, thank you so much!

Just had the same problem. Tabliss uses duckduckgo's icon service to retrieve the icons and it appears duckduckgo's copy of the icon is corrupted. I managed a workaround by using css that directly grabs the icon, this does undermine the point of using duckduckgo to grab the icons anonymously though. Here's the CSS for the scispace one (typeset.io). "Alt" was found by inspecting element (it's just the url). The padding is the same as the font size you see for that quick link's .widget div (I believe this is what is controlled by the 'size' slider in the display settings).

img[alt="typeset.io"] {
	font-size:0;
	padding: 18px 18px 0 0;
	background: url('https://scispace.com/static/favicon.svg');
	background-size:cover;
}

Edit: The problem with chatgpt (your issue) is actually that duckduckgo still has the default icon in place for the chat.openai.com subdomain. You can use https://icons.duckduckgo.com/ip3/openai.com.ico as the background image url and still avoid directly grabbing the icon from openai

Yeah. duckduckgo's favicon grabber is not working for links with subdomains: https://icons.duckduckgo.com/ip3/https://chat.openai.com

Google's utility is working tho: https://www.google.com/s2/favicons?sz=32&domain_url=https://chat.openai.com.

(in Display.tsx)

@joelshepherd