An open API service indexing awesome lists of open source software.

https://github.com/alanfriedman/uxshot


https://github.com/alanfriedman/uxshot

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# uxshot

Create and share screenshots and screen recordings right from your browser.

## Usage as an npm module

```
import uxshot from 'uxshot';
uxshot({
screenshotKey: 'ctrl+s',
videoKey: 'ctrl+r'
});
```

Take a screenshot: `ctrl+s`

Record your screen: `ctrl+r`

## Usage from a cdn

You need to include hotkeys-js and ux shot:

```html

window.uxshot.init({
screenshotKey: 'ctrl+s',
videoKey: 'ctrl+r'
});

```

### Options

```
uxshot({
screenshotKey: 'ctrl+s',
videoKey: 'ctrl+r'
});
```

Use any hotkey string supported by [HotKeys.js](https://wangchujiang.com/hotkeys)