diff --git a/browser/modules/ExtensionsUI.jsm b/browser/modules/ExtensionsUI.jsm index e1482658198c..366e75b6e2ee 100644 --- a/browser/modules/ExtensionsUI.jsm +++ b/browser/modules/ExtensionsUI.jsm @@ -360,10 +360,13 @@ this.ExtensionsUI = { callback: resolve, }; + let icon = addon.isWebExtension ? + addon.iconURL || DEFAULT_EXTENSION_ICON : + "chrome://browser/skin/addons/addon-install-installed.svg"; let options = { hideClose: true, timeout: Date.now() + 30000, - popupIconURL: addon.iconURL || DEFAULT_EXTENSION_ICON, + popupIconURL: icon, eventCallback(topic) { if (topic == "showing") { let doc = this.browser.ownerDocument;