We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6d1d19 commit 0f32c26Copy full SHA for 0f32c26
source/lib/notifications-service.js
@@ -99,7 +99,7 @@ export async function removeNotification(notificationId) {
99
export function getNotificationObject(notificationInfo) {
100
return {
101
title: notificationInfo.subject.title,
102
- iconUrl: 'icon-notif.png',
+ iconUrl: browser.runtime.getURL('icon-notif.png'),
103
type: 'basic',
104
message: notificationInfo.repository.full_name,
105
contextMessage: getNotificationReasonText(notificationInfo.reason)
source/manifest.json
@@ -34,5 +34,8 @@
34
"options_ui": {
35
"page": "options.html",
36
"chrome_style": true
37
- }
+ },
38
+ "web_accessible_resources": [
39
+ "icon-notif.png"
40
+ ]
41
}
0 commit comments