Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
/* global chrome */
chrome.runtime.onMessage.addListener((message, _sender, sendResponse) => {
if (message === 'fetch-confirmation') {
sendResponse({ message: 'Hello from background.js' });
}
});