Pinterest browser plugin

Delivers browser events to a Pinterest tag

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-pinterest-tag@latest

Yarn classic (v1)

yarn add @seeka-labs/converge-plugin-pinterest-tag@latest

Configuration

Add the plugin to your Converge configuration:

import { PinterestTagConvergeSdkPlugin } from "@seeka-labs/converge-plugin-pinterest-tag";

const converge = new ConvergeSdk({
  ...
  plugins: [
    ...
    new PinterestTagConvergeSdkPlugin({ tagId: "(Pinterest tag ID)" })
  ],
});