Skip to content

madmages/chrome-extrx

Repository files navigation

What for?

It makes Chrome extension API reactive a bit. Powered by RxJS

Example

Before this library...

chrome.tabs.onCreated.addListener(tab => {
    // some magic
});

After...

import {Tabs} from 'chrome-extrx'

Tabs.onCreated().subscribe(tab => {
    // some magic
})

Instaling

npm install chrome-extrx

License

MIT