upload policy file
This commit is contained in:
parent
16ddb88095
commit
00cc23a46d
|
|
@ -3,29 +3,118 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Privacy Policy - Bid Extension</title>
|
||||
<style>
|
||||
:root {
|
||||
--primary-color: #3498db;
|
||||
--secondary-color: #2c3e50;
|
||||
--text-color: #333;
|
||||
--light-bg: #f8f9fa;
|
||||
--border-color: #e0e0e0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
line-height: 1.6;
|
||||
color: var(--text-color);
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.container {
|
||||
background-color: #fff;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: var(--primary-color);
|
||||
text-align: center;
|
||||
border-bottom: 2px solid var(--border-color);
|
||||
padding-bottom: 15px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: var(--secondary-color);
|
||||
border-left: 4px solid var(--primary-color);
|
||||
padding-left: 10px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
strong {
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: var(--light-bg);
|
||||
padding: 2px 5px;
|
||||
border-radius: 3px;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
font-size: 0.9em;
|
||||
color: #e74c3c;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--primary-color);
|
||||
text-decoration: none;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #2980b9;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.effective-date {
|
||||
background-color: var(--light-bg);
|
||||
padding: 10px 15px;
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.contact-section {
|
||||
background-color: var(--light-bg);
|
||||
padding: 15px;
|
||||
border-radius: 5px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Privacy Policy</h1>
|
||||
<div class="container">
|
||||
<h1>Privacy Policy</h1>
|
||||
|
||||
<p><strong>Effective Date:</strong> 2025-05-20</p>
|
||||
<div class="effective-date">
|
||||
<strong>Effective Date:</strong> 2025-05-20
|
||||
</div>
|
||||
|
||||
<p>This privacy policy explains how the Chrome Extension <strong>Bid Extension</strong> handles user data.</p>
|
||||
<p>This privacy policy explains how the Chrome Extension <strong>Bid Extension</strong> handles user data.</p>
|
||||
|
||||
<h2>1. Information Collection</h2>
|
||||
<p>The Bid Extension does <strong>not</strong> collect or transmit any personal or sensitive user data.</p>
|
||||
<p>The extension uses the <code>storage</code> permission to save settings and preferences <strong>locally</strong> in your browser.</p>
|
||||
<h2>1. Information Collection</h2>
|
||||
<p>The Bid Extension does <strong>not</strong> collect or transmit any personal or sensitive user data.</p>
|
||||
<p>The extension uses the <code>storage</code> permission to save settings and preferences <strong>locally</strong> in your browser.</p>
|
||||
|
||||
<h2>2. Local Storage Only</h2>
|
||||
<p>All data used by this extension is stored using Chrome's local storage (via the <code>chrome.storage</code> API). This data never leaves your device and is not transmitted to any external server.</p>
|
||||
<h2>2. Local Storage Only</h2>
|
||||
<p>All data used by this extension is stored using Chrome's local storage (via the <code>chrome.storage</code> API). This data never leaves your device and is not transmitted to any external server.</p>
|
||||
|
||||
<h2>3. No Third-party Sharing</h2>
|
||||
<p>We do not share any user data with third parties. We do not use analytics, ads, or any tracking technologies.</p>
|
||||
<h2>3. No Third-party Sharing</h2>
|
||||
<p>We do not share any user data with third parties. We do not use analytics, ads, or any tracking technologies.</p>
|
||||
|
||||
<h2>4. Changes to this Policy</h2>
|
||||
<p>If we update this privacy policy in the future, we will notify users by updating this document with the new effective date.</p>
|
||||
|
||||
<h2>5. Contact</h2>
|
||||
<p>If you have any questions about this privacy policy, please contact us at: <a href="mailto:bid@apactech.io">bid@apactech.io</a></p>
|
||||
<h2>4. Changes to this Policy</h2>
|
||||
<p>If we update this privacy policy in the future, we will notify users by updating this document with the new effective date.</p>
|
||||
|
||||
<h2>5. Contact</h2>
|
||||
<div class="contact-section">
|
||||
<p>If you have any questions about this privacy policy, please contact us at: <a href="mailto:bid@apactech.io">bid@apactech.io</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Reference in New Issue