0.12.1 • Published 4 years ago

@extend-chrome/events-rxjs v0.12.1

Weekly downloads
12
License
MIT
Repository
-
Last release
4 years ago

npm (scoped) GitHub last commit License TypeScript Declarations Included

ko-fi Chrome Extension Tutorials on YouTube


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)
})