Skip to content

Jira Integration

The TailTrace Chrome Extension can create Jira issues directly from the inspector overlay.

  1. Create an API token

    Go to Atlassian Account → Security → API tokens and create a new token.

  2. Configure in TailTrace

    Open the Chrome extension popup → Settings → Jira section:

    • Enter your Jira domain (e.g., yourcompany.atlassian.net)
    • Enter your email
    • Paste your API token
    • Select your default project
  3. Start reporting

    When inspecting an element, click “Report Bug” to create an issue.

Each bug report includes:

  • Screenshot - Attached to the issue
  • Drift metrics - In the description
  • Environment data - As custom fields or labels
  • Element details - CSS selector and styles

Issues are created with:

Summary: Design drift on [page] - [element]
Description:
## Drift Report
Property: background-color
Detected: #3b83f6
Expected: blue-500 (#3b82f6)
Delta-E: 0.73
## Element
Selector: button.primary-cta
## Environment
URL: https://example.com
Viewport: 1920×1080
OptionDescription
DomainYour Jira cloud domain
EmailYour Atlassian account email
API TokenPersonal API token
ProjectDefault project key (e.g., “PROJ”)
Issue TypeDefault to “Bug”

TailTrace uses Jira’s REST API v3:

POST https://{domain}.atlassian.net/rest/api/3/issue
Authorization: Basic {base64(email:token)}
Content-Type: application/json
{
"fields": {
"project": { "key": "PROJ" },
"summary": "Design drift detected",
"description": { "type": "doc", ... },
"issuetype": { "name": "Bug" }
}
}