How to Setup ScreenApp Recording Plugin

This article provides a step-by-step guide on how to set up the ScreenApp Recording Plugin. Follow the instructions below to activate an account and integrate the plugin into your website.

How to activate an account and set up the plugin?

Setup an account

Create an account with ScreenApp and contact admin@screenapp.io to activate a trial or your admin account.

Get the token

Once you get your trial or admin account activated, enter your website URL and generate a token as given below.

Go to settings » Plugin » Get the token

Follow the instructions in the developer guide and integrate the ScreenApp recording plugin

Read the instructions of the developer guide and follow them to integrate the ScreenApp recording plugin into your website.

Developer Guide

  • Import the following JS in the script tag

Example:


<script src="/plugin-4.11.0.bundle.js" type="text/javascript"></script>

  • Create a parent element with a unique Id

Example:


<div id="recordButtonContainer"></div>

  • Call the following function on your recording button


const screenApp = new window.ScreenApp(token, finishRecordingCallback);
screenApp.mount(parentElementID);

The Plugin object constructor uses the following options:

  • token: Plugin token generated by the screenApp
  • <