TikTok browser plugin

Delivers browser events to TikTok 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-tiktok-pixel@latest

Yarn classic (v1)

yarn add @seeka-labs/converge-plugin-tiktok-pixel@latest

Configuration

Add the plugin to your Converge configuration:

import { TikTokPixelConvergeSdkPlugin } from "@seeka-labs/converge-plugin-tiktok-pixel";

const converge = new ConvergeSdk({
  ...
  plugins: [
    ...
    new TikTokPixelConvergeSdkPlugin({ pixelId: "(TikTok pixel ID)" })
  ],
});