Snapchat browser plugin
Delivers browser events to Snapchat pixel
Installation
Once the @seeka-labs
private registry is configured, the below command can be ran to install the plugin.
NPM
npm install --save @seeka-labs/converge-plugin-snapchat-pixel@latest
Yarn classic (v1)
yarn add @seeka-labs/converge-plugin-snapchat-pixel@latest
Configuration
Add the plugin to your Converge
configuration:
import { SnapchatPixelConvergeSdkPlugin } from "@seeka-labs/converge-plugin-snapchat-pixel";
const converge = new ConvergeSdk({
...
plugins: [
...
new SnapchatPixelConvergeSdkPlugin({ pixelId: "(Snapchat pixel ID)" })
],
});