Emoji favicons for the web
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix #49

+5 -2
+1 -2
source/manifest.json
··· 6 6 "content_scripts": [ 7 7 { 8 8 "matches": ["*://*/*"], 9 - "js": ["content_script.js"], 10 - "run_at": "document_end" 9 + "js": ["content_script.js"] 11 10 } 12 11 ], 13 12 "options_page": "options.html",
+4
source/utilities/favicon_helpers.ts
··· 11 11 12 12 let existingFavicon: HTMLElement | null = null; 13 13 14 + if (getAllIconLinks().length) { 15 + existingFavicon = getAllIconLinks()[0]; 16 + } 17 + 14 18 interface Options { 15 19 shouldOverride?: boolean; 16 20 }