mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 06:48:37 +02:00
13 lines
324 B
JavaScript
13 lines
324 B
JavaScript
|
|
const button1 = document.querySelector("#function-notify");
|
|
|
|
button1.addEventListener("click", () => {
|
|
window.notify("Message from the page script!");
|
|
});
|
|
|
|
const button2 = document.querySelector("#object-notify");
|
|
|
|
button2.addEventListener("click", () => {
|
|
window.messenger.notify("Message from the page script!");
|
|
});
|