diff options
Diffstat (limited to 'src/background')
-rw-r--r-- | src/background/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/background/index.js b/src/background/index.js index 4a5e6d6..4aa3856 100644 --- a/src/background/index.js +++ b/src/background/index.js @@ -90,7 +90,8 @@ browser.runtime.onMessage.addListener((request, sender) => { return { caption: tab.title, content: tab.title, - url: tab.url + url: tab.url, + icon: tab.favIconUrl } }); return { |