Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions examples/playground/src/components/ExtensionBanner.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { useState, useEffect } from "react";
import "./ExtensionBanner.css";

// TODO: Replace with actual Chrome Web Store URL once published
const CHROME_STORE_URL =
"https://chromewebstore.google.com/detail/webmcp-bridge/EXTENSION_ID_HERE";
"https://chromewebstore.google.com/detail/webmcp-bridge/chgjbookknohehmaocfijekhaocaanaf";

const DETECTION_TIMEOUT = 2000;

Expand Down Expand Up @@ -57,11 +56,11 @@ export function ExtensionBanner() {
<div className="extension-banner__content">
<span className="extension-banner__dot" />
<span>
<strong>Not connected</strong> — the{" "}
<strong>Not connected</strong> — install or activate the{" "}
<a href={CHROME_STORE_URL} target="_blank" rel="noopener noreferrer">
WebMCP Bridge extension
</a>{" "}
is not detected. Install it to expose your tools to AI clients.
to expose your tools to AI clients.
</span>
</div>
<button
Expand Down
Loading