Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ Premium AI Chatbot for robust XPath and Locator generation. This project is a br
2. Enable "Developer mode" in the top right.
3. Click "Load unpacked" and select the `dist` directory.

## 🔗 Links

- **Privacy Policy**: [Read here](https://charancherry007.github.io/TestPilot/privacy.html)
- **GitHub Repository**: [TestPilot](https://github.com/charancherry007/TestPilot)

## 📄 License

This project is licensed under the ISC License.
218 changes: 218 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - TestPilot</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<style>
:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--bg: #0f172a;
--card-bg: #1e293b;
--text: #f1f5f9;
--text-muted: #94a3b8;
--accent: #10b981;
}

body {
font-family: 'Inter', sans-serif;
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}

.container {
max-width: 800px;
margin: 40px auto;
padding: 40px;
background: var(--card-bg);
border-radius: 24px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.05);
}

header {
text-align: center;
margin-bottom: 40px;
}

h1 {
font-size: 2.5rem;
font-weight: 800;
margin: 0;
background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.last-updated {
color: var(--text-muted);
font-size: 0.9rem;
margin-top: 10px;
}

section {
margin-bottom: 30px;
}

h2 {
font-size: 1.5rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 15px;
display: flex;
align-items: center;
}

h2::before {
content: "";
display: inline-block;
width: 4px;
height: 24px;
background: var(--accent);
margin-right: 12px;
border-radius: 2px;
}

p {
color: var(--text-muted);
margin-bottom: 15px;
}

ul {
list-style: none;
padding: 0;
}

li {
padding-left: 20px;
position: relative;
margin-bottom: 10px;
color: var(--text-muted);
}

li::before {
content: "→";
position: absolute;
left: 0;
color: var(--accent);
}

footer {
text-align: center;
padding: 40px;
color: var(--text-muted);
font-size: 0.8rem;
}

a {
color: var(--primary);
text-decoration: none;
transition: color 0.2s;
}

a:hover {
color: var(--primary-dark);
text-decoration: underline;
}

@media (max-width: 640px) {
.container {
margin: 20px;
padding: 24px;
}

h1 {
font-size: 2rem;
}
}
</style>
</head>

<body>
<div class="container">
<header>
<h1>Privacy Policy</h1>
<p class="last-updated">Last Updated: January 9, 2026</p>
</header>

<section>
<h2>Overview</h2>
<p>
TestPilot (the "Extension") is a browser extension designed to assist Developers and QA Engineers in
generating robust XPaths and CSS Locators using AI. We respect your privacy and are committed to being
transparent about our data practices.
</p>
</section>

<section>
<h2>Data Collection</h2>
<p>
<strong>We do not collect or store any personal information.</strong> The Extension operates primarily
within your browser.
</p>
<ul>
<li>No browsing history is tracked or recorded.</li>
<li>No account registration is required to use the core features.</li>
<li>Inputs provided to the chatbot are processed locally or sent directly to the AI service provider for
real-time generation only.</li>
</ul>
</section>

<section>
<h2>Permissions</h2>
<p>
The Extension requires specific permissions to function correctly:
</p>
<ul>
<li><strong>activeTab</strong>: Used to interact with the current webpage to analyze its DOM structure
for XPath generation.</li>
<li><strong>storage</strong>: Used to save your preferences and locally stored data (like recent
history).</li>
</ul>
</section>

<section>
<h2>Third-Party Services</h2>
<p>
The Extension uses AI models to provide locator suggestions. While we don't store your data, the content
you interact with (like DOM snippets) may be transmitted to the AI provider to generate responses.
Please ensure you do not use the AI generation on pages containing highly sensitive or confidential
information.
</p>
</section>

<section>
<h2>Security</h2>
<p>
We prioritize the security of your interaction. Any data transmission to AI services is done via secure
HTTPS protocols.
</p>
</section>

<section>
<h2>Contact Us</h2>
<p>
If you have any questions about this Privacy Policy, please contact us through the <a
href="https://github.com/charancherry007/TestPilot">GitHub Repository</a>.
</p>
</section>
</div>

<footer>
&copy; 2026 TestPilot. All rights reserved.
</footer>
</body>

</html>