This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/src/background/index.js
2017-08-12 11:22:09 +09:00

4 lines
187 B
JavaScript

browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
console.log("Pressed " + request.which);
sendResponse({ response: "Response from background script" });
});