Skip to content

Instantly share code, notes, and snippets.

@AllenFang
Last active May 5, 2018 07:08
Show Gist options
  • Save AllenFang/aa8204ba3d8053b3b42572a8cc893a4d to your computer and use it in GitHub Desktop.
Save AllenFang/aa8204ba3d8053b3b42572a8cc893a4d to your computer and use it in GitHub Desktop.
event.js
import { tabsActivatedFactory } from './tabs';
import { DOMLoadedFactory } from './webNavigation';
export default (store) => {
browser.tabs.onActivated.addListener(tabsActivatedFactory(store));
browser.webNavigation.onDOMContentLoaded.addListener(DOMLoadedFactory(store));
//...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment