I'm building a Chrome extension that features Desktop Notifications. The following is the code I use:
var notification = webkitNotifications.createNotification(
'48.png',
'Hello!',
'Lorem ipsum...'
);
48.png is in the extension folder AND in the array of web_accessible_resources in the manifest.json
. But the icon does not show up.
Can you help me? I'm using the latest Chrome version (Apple version, 22.0.1229.94).