> ## Documentation Index
> Fetch the complete documentation index at: https://sc-docs.deepidv.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DeepEye Browser Extension

> Real-time deepfake detection for web content

> Bring deepfake detection directly into the browser — empowering compliance officers, fraud analysts, and relationship managers with real-time content authenticity scoring across any web page.

export const SectionHeader = ({label, title, description, align = "left"}) => <div className="deepidv-section-header" style={{
  textAlign: align,
  alignItems: align === "center" ? "center" : "flex-start"
}}>
    {label && <p className="deepidv-section-label">{label}</p>}
    <h2 className="deepidv-section-title">{title}</h2>
    {description && <p className="deepidv-section-desc">{description}</p>}
  </div>;

export const FeatureGrid = ({cols = 3, children}) => <div className="deepidv-feature-grid" style={{
  "--grid-cols": cols
}}>
    {children}
  </div>;

export const FeatureCard = ({icon, title, description, href}) => {
  const inner = <div className="deepidv-feature-card">
      {icon && <div className="deepidv-feature-card-icon">
          <Icon icon={icon} size={20} />
        </div>}
      <div className="deepidv-feature-card-content">
        <h3 className="deepidv-feature-card-title">{title}</h3>
        {description && <p className="deepidv-feature-card-desc">{description}</p>}
      </div>
      {href && <div className="deepidv-feature-card-arrow">
          <Icon icon="arrow-right" size={14} />
        </div>}
    </div>;
  if (href) {
    return <a href={href} style={{
      textDecoration: "none",
      color: "inherit",
      display: "block",
      border: "none",
      boxShadow: "none"
    }}>
        {inner}
      </a>;
  }
  return inner;
};

## What is DeepEye?

DeepEye is a browser extension that provides real-time deepfake confidence scores on any content visible in the browser. It analyses images, faces, text, and media across web pages to surface authenticity indicators — enabling banking professionals to assess the legitimacy of digital content without leaving their browser.

DeepEye operates passively in the background, scanning page content as it loads. When potentially synthetic or manipulated content is detected, a confidence indicator appears directly alongside the content, providing immediate visibility into authenticity concerns.

***

<SectionHeader
  label="Capabilities"
  title={
<>
  Key <span>Capabilities</span>
</>
}
/>

<FeatureGrid cols={2}>
  <FeatureCard icon="image" title="Image Authenticity" description="Scores images across web pages for indicators of AI generation, digital manipulation, or synthetic creation. Identifies GAN-generated imagery, manipulated photographs, and AI-produced graphics." />

  <FeatureCard icon="face-viewfinder" title="Face Analysis" description="Detects deepfake faces in profile photographs, video call screenshots, and identity images. Identifies face-swapping artifacts, synthetic facial features, and AI-generated portraits." />

  <FeatureCard icon="envelope" title="Email Content Analysis" description="Flags suspicious email content and attachments when accessed through web-based email clients. Identifies AI-generated communications and manipulated document attachments." />

  <FeatureCard icon="share-nodes" title="Social Media Verification" description="Analyses posts, profile images, and media content on social media platforms for authenticity. Identifies fabricated profiles and AI-generated content used in social engineering." />
</FeatureGrid>

***

<SectionHeader
  label="User Experience"
  title={
<>
  How It <span>Works</span>
</>
}
/>

DeepEye integrates seamlessly into daily workflows with minimal disruption:

1. **Passive scanning** — DeepEye runs in the background as you browse. No manual activation is required. The extension analyses page content as it loads.

2. **Confidence indicators** — When content is analysed, a small shield icon appears near the content with a colour-coded confidence assessment:
   * **Green shield** — Content appears authentic (score 0–20)
   * **Yellow shield** — Uncertain, manual review recommended (score 21–50)
   * **Red shield** — Likely AI-generated or manipulated (score 51–100)

3. **Detailed breakdown** — Click any shield indicator to view a detailed analysis panel, including:
   * Overall confidence score (0–100, where 100 indicates certain AI generation)
   * Specific detection signals identified
   * Content type classification
   * Analysis timestamp

4. **Scoring scale** — Scores range from 0 to 100. A score of 0 indicates high confidence in authenticity, while 100 indicates near-certainty of AI generation or manipulation.

***

<SectionHeader
  label="Enterprise Use"
  title={
<>
  Banking <span>Applications</span>
</>
}
  description="DeepEye serves multiple roles within a financial institution's risk and compliance framework."
/>

<FeatureGrid cols={2}>
  <FeatureCard icon="scale-balanced" title="Compliance Officers" description="Review customer-submitted materials accessed through web portals for authenticity. Verify that uploaded identity documents, financial statements, and supporting evidence have not been AI-generated or manipulated." />

  <FeatureCard icon="magnifying-glass" title="Fraud Analysts" description="Investigate suspicious accounts by analysing profile images, submitted documentation, and digital communications for signs of synthetic identity fraud or deepfake-based impersonation." />

  <FeatureCard icon="handshake" title="Relationship Managers" description="Verify client communications and identity during digital interactions. Confirm that profile photographs, video call participants, and shared documents are authentic before proceeding with sensitive transactions." />

  <FeatureCard icon="lock" title="IT Security Teams" description="Monitor for deepfake-based social engineering attacks targeting bank employees. Detect AI-generated phishing content, synthetic voice messages, and manipulated executive communications." />
</FeatureGrid>

***

<Note>
  DeepEye is available as an enterprise deployment with centralized administration and audit logging. Contact your deepidv account manager for pricing, licensing, and deployment options.
</Note>

<CardGroup cols={2}>
  <Card title="Installation & Setup" icon="download" href="/deepfake-detection/deepeye-installation">
    Install, configure, and deploy DeepEye across your organization.
  </Card>
</CardGroup>
