blob: 0fa0720696ac42424d76b3a503fc90da0a639556 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
window.addEventListener("keypress", (e) => {
browser.runtime.sendMessage({
which: e.which || e.keyCode,
}).then((msg) => {
console.log(`Message from the background script: ${msg.response}`);
}, (err) => {
console.log(`Error: ${err}`);
});
});
|