@extend-chrome/events-rxjs
v0.12.1
Published
RxJS Observables for Chrome API events.
Downloads
5
Readme
RxJS Observables for Chrome API events
Table of Contents
Getting started
You will need to use a bundler like Rollup, Parcel, or Webpack to include this library in the build of Chrome extension.
See rollup-plugin-chrome-extension
for
an easy way use Rollup to build your Chrome extension!
Installation
npm i @extend-chrome/events-rxjs
Usage
import { contextMenus } from '@extend-chrome/events-rxjs'
contextMenus.clickStream.subscribe((clickEvent) => {
console.log('click', clickEvent)
})