Periscale Chat Widget

v1.0.0

Embeddable live chat widget for any website. Connects to Periscale's AI-powered inbox.

Quick Start

<script src="https://periscale-chat.pages.dev/chat-widget.umd.js"></script>
<script>
  PeriscaleChat.init({
    apiKey: "sb_live_your_api_key_here",
    primaryColor: "#20808D",
    agentName: "Support",
  });
</script>

Files

Configuration

PeriscaleChat.init({
  apiKey: "sb_live_xxx",        // Required
  position: "bottom-right",     // bottom-right | bottom-left
  primaryColor: "#20808D",      // Brand color
  textColor: "#ffffff",         // Text on primary color
  bubbleSize: 60,               // FAB size in px
  borderRadius: 16,             // Panel border radius
  fontFamily: "Inter, sans-serif",
  greeting: "Hi! How can we help?",
  placeholder: "Type a message...",
  agentName: "Support",
  agentAvatar: "https://...",
  formTitle: "Start a conversation",
  nameLabel: "Your name",
  emailLabel: "Email address",
  phoneLabel: "Phone number",
});