mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-21 00:32:48 +02:00
11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
chrome.runtime.onMessage.addListener(notify);
|
|
|
|
function notify(message) {
|
|
chrome.notifications.create({
|
|
"type": "basic",
|
|
"iconUrl": chrome.extension.getURL("link.png"),
|
|
"title": "You clicked a link!",
|
|
"message": message.url
|
|
});
|
|
}
|