# Create a ready-to-host Privacy Policy HTML page for Fontifier html = """ Privacy Policy – Fontifier

Privacy Policy – Fontifier

Effective Date: 29 August 2025

Fontifier lets you change the font used on websites you visit. We respect your privacy and keep data collection to the absolute minimum.

Data We Collect

We do not collect, transmit, or sell personal information.

The only information stored by the extension are your font preferences—such as the selected font family, font source (e.g., Google Fonts URL), and optional exclusion selectors. These settings are saved locally via Chrome’s storage.sync and remain under your browser account.

How We Use Your Data

Your settings are used solely to apply your chosen font on pages you visit. This information never leaves your device and is not shared with us or third parties.

Third‑Party Requests

If you choose a font hosted on a third‑party service (e.g., Google Fonts), your browser may fetch that font directly from the provider. Fontifier does not intercept or store these requests.

Security

Because no personal data is collected or transmitted, the risk of data exposure via this extension is minimal.

Changes

If future versions change how data is handled, this policy will be updated here.

Contact

Questions? Contact: hrishibhat@gmail.com

""" path = "/mnt/data/privacy-policy-fontifier.html" with open(path, "w") as f: f.write(html) path