| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Privacy Policy — Printer App - All Printers</title>
- <style>
- :root {
- --blue: #3878f5;
- --navy: #1f2e52;
- --bg: #f6f6f6;
- --card: #ffffff;
- --text: #1f1f1f;
- --text-secondary: #7a7a7a;
- --border: #ebebeb;
- --radius: 16px;
- }
- * { box-sizing: border-box; margin: 0; padding: 0; }
- body {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
- background: var(--bg);
- color: var(--text);
- line-height: 1.6;
- -webkit-font-smoothing: antialiased;
- }
- .page {
- max-width: 680px;
- margin: 0 auto;
- padding: 32px 20px 48px;
- }
- .back {
- display: inline-flex;
- align-items: center;
- gap: 6px;
- font-size: 13px;
- color: var(--blue);
- text-decoration: none;
- margin-bottom: 24px;
- }
- .back:hover { text-decoration: underline; }
- .card {
- background: var(--card);
- border: 1.5px solid var(--border);
- border-radius: var(--radius);
- padding: 32px 28px;
- }
- h1 {
- font-size: 24px;
- font-weight: 600;
- color: var(--navy);
- margin-bottom: 6px;
- }
- .updated {
- font-size: 13px;
- color: var(--text-secondary);
- margin-bottom: 28px;
- }
- h2 {
- font-size: 16px;
- font-weight: 600;
- color: var(--navy);
- margin: 24px 0 8px;
- }
- p, li {
- font-size: 14px;
- color: var(--text);
- margin-bottom: 12px;
- }
- ul {
- padding-left: 20px;
- margin-bottom: 12px;
- }
- li { margin-bottom: 6px; }
- </style>
- </head>
- <body>
- <div class="page">
- <a class="back" href="index.html">← Back to Printer App - All Printers</a>
- <article class="card">
- <h1>Privacy Policy</h1>
- <p class="updated">Last updated: June 29, 2026</p>
- <p>Printer App - All Printers ("we", "our", or "us") respects your privacy. This policy explains how we handle information when you use the Printer App - All Printers macOS application.</p>
- <h2>Information We Collect</h2>
- <p>Printer App - All Printers processes data locally on your Mac. We do not collect, store, or transmit your personal documents, photos, contacts, or print content to our servers.</p>
- <ul>
- <li><strong>Contacts access</strong> — Used only when you choose to print contacts. Contact data stays on your device.</li>
- <li><strong>Camera access</strong> — Used only when you scan documents. Images are processed locally.</li>
- <li><strong>Local network access</strong> — Used only to discover scanners and printers on your Wi-Fi network. No data is sent to our servers.</li>
- <li><strong>Files you select</strong> — Opened and printed on your device. We do not upload your files.</li>
- </ul>
- <h2>Purchases</h2>
- <p>Subscriptions and in-app purchases are processed by Apple through the App Store. We receive only anonymized purchase status information needed to unlock premium features. Apple's privacy policy governs payment data.</p>
- <h2>Analytics</h2>
- <p>We do not use third-party analytics or advertising trackers in Printer App - All Printers.</p>
- <h2>Data Retention</h2>
- <p>Any recently opened files you choose to save are stored locally on your Mac using system file bookmarks. You can disable recent file saving in app settings.</p>
- <h2>Children's Privacy</h2>
- <p>Printer App - All Printers is not directed at children under 13. We do not knowingly collect personal information from children.</p>
- <h2>Changes to This Policy</h2>
- <p>We may update this policy from time to time. Continued use of the app after changes constitutes acceptance of the updated policy.</p>
- <h2>Contact Us</h2>
- <p>If you have questions about this privacy policy, visit our <a href="https://sites.google.com/view/smartprinterappmacos/get-support" target="_blank" rel="noopener" style="color:#3878f5">support page</a>.</p>
- </article>
- </div>
- </body>
- </html>
|