Files
webextensions-examples/page-scripts/export-helpers.js
2017-10-10 13:41:20 -07:00

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!");
});