upload policy
This commit is contained in:
parent
f66c9d6c26
commit
16ddb88095
|
|
@ -9,7 +9,14 @@ export class ExtensionsController {
|
|||
async policy(@Res() res: Response) {
|
||||
const rootDir = process.cwd();
|
||||
|
||||
const filePath = join(rootDir, `${Constant.MEDIA_PATH}/views/policy.html`);
|
||||
const filePath = join(
|
||||
rootDir,
|
||||
'src',
|
||||
'modules',
|
||||
'extensions',
|
||||
`/views/policy.html`,
|
||||
);
|
||||
|
||||
return res.sendFile(filePath);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Privacy Policy - Bid Extension</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Privacy Policy</h1>
|
||||
|
||||
<p><strong>Effective Date:</strong> 2025-05-20</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>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>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>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue