Add icons to icon path when displaying notifications
This commit is contained in:
parent
562a84d984
commit
74b1010881
|
@ -7,7 +7,7 @@ chrome.runtime.onMessage.addListener(
|
||||||
type: "basic",
|
type: "basic",
|
||||||
title : "gPass",
|
title : "gPass",
|
||||||
message : request.options.message,
|
message : request.options.message,
|
||||||
iconUrl:chrome.extension.getURL("gpass_icon_64.png")
|
iconUrl:chrome.extension.getURL("icons/gpass_icon_64.png")
|
||||||
};
|
};
|
||||||
|
|
||||||
chrome.notifications.create("gPass", options, function(){});
|
chrome.notifications.create("gPass", options, function(){});
|
||||||
|
|
|
@ -7,7 +7,7 @@ browser.runtime.onMessage.addListener(
|
||||||
type: "basic",
|
type: "basic",
|
||||||
title : "gPass",
|
title : "gPass",
|
||||||
message : request.options.message,
|
message : request.options.message,
|
||||||
iconUrl:browser.extension.getURL("gpass_icon_64.png")
|
iconUrl:browser.extension.getURL("icons/gpass_icon_64.png")
|
||||||
};
|
};
|
||||||
|
|
||||||
browser.notifications.create("gPass", options);
|
browser.notifications.create("gPass", options);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user