From 45cd09d9279fe09a15d1cd73d988ad55fbc5106c Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Mon, 30 Apr 2018 12:29:32 -0400 Subject: [PATCH] LP#1731922 - Allow Hatch icon to show in the FF toolbar. Adding default_icon to browser_action allows Firefox to use the icon in the toolbar. According to the Chrome extension documentation, this same syntax should work there too. Signed-off-by: Chris Sharp --- extension/app/manifest.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/extension/app/manifest.json b/extension/app/manifest.json index e953e356a6..eea09d81d4 100644 --- a/extension/app/manifest.json +++ b/extension/app/manifest.json @@ -19,7 +19,12 @@ } ], "browser_action": { - "default_title": "Hatch" + "default_title": "Hatch", + "default_icon": { + "16": "hatch_icon_16.png", + "48": "hatch_icon_48.png" + } + }, "permissions": [ "nativeMessaging" -- 2.11.0