-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
146 lines (123 loc) · 5.15 KB
/
privacy.html
File metadata and controls
146 lines (123 loc) · 5.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<title>Privacy Policy - ShrinkiFly</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="google-adsense-account" content="ca-pub-4432411945903392">
<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=Poppins:wght@100;200;300;400;500;600&display=swap" rel="stylesheet">
<style>
body{font-family:Arial,sans-serif;background:#f9fafb;color:#111827;margin:0;padding:0}
.page-wrapper{display:flex;justify-content:center;gap:1.5rem;padding:0 1rem;max-width:1300px;margin:0 auto}
.main-content{max-width:800px;width:100%;margin:2rem 0;padding:2rem;box-shadow:0 0 10px rgba(0,0,0,0.1);border-radius:12px;background:#fff}
.adsense-slot{display:none;justify-content:center;margin-top:2rem}
.main-content h1,.main-content h2{font-family:'Poppins',sans-serif;border-bottom:2px solid #e5e7eb;padding-bottom:.5rem}
.main-content p{line-height:1.6;color:#4b5563}
.shrinkiFlyLogo{font-family:"Poppins",sans-serif;font-weight:600;font-style:italic;font-size:24px;text-align:center;display:block;text-decoration:none;color:#4F46E5;margin-bottom:2rem}
.shrinkiFlyLogo img{width:24px;height:24px;vertical-align:middle}
.site-footer{text-align:center;margin-top:3rem;padding:2rem 1rem;border-top:1px solid #e5e7eb;color:#6B7280;font-size:.9rem}
.site-footer a{color:#4F46E5;text-decoration:none;margin:0 10px}
</style>
</head>
<body>
<!-- Top Ad -->
<div class="adsense-slot">
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4432411945903392"
data-ad-slot="1537688469"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
</div>
<div class="page-wrapper">
<!-- Left Ad -->
<div class="adsense-slot">
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4432411945903392"
data-ad-slot="1537688469"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
</div>
<main class="main-content">
<a href="index.html" class="shrinkiFlyLogo">
<img src="/images/shrinkiflyLogo.svg" alt="ShrinkiFly Logo"> ShrinkiFly
</a>
<h1>Privacy Policy for ShrinkiFly</h1>
<p><strong>Last Updated: October 14, 2025</strong></p>
<p>ShrinkiFly ("we," "us," or "our") is committed to protecting your privacy.</p>
<h2>1. Image and File Privacy</h2>
<p><strong>We do not upload, store, or access your images.</strong> All processing happens locally in your browser.</p>
<h2>2. Cookies and Advertising</h2>
<p>We use Google AdSense to display ads on the free version of ShrinkiFly. You can opt out of personalized ads via
<a href="https://www.google.com/settings/ads" target="_blank" rel="noopener noreferrer">Google Ads Settings</a>.
</p>
<p><a href="index.html">Back to ShrinkiFly Home</a></p>
</main>
<!-- Right Ad -->
<div class="adsense-slot">
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4432411945903392"
data-ad-slot="1537688469"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
</div>
</div>
<!-- Bottom Ad -->
<div class="adsense-slot">
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-4432411945903392"
data-ad-slot="1537688469"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
</div>
<footer class="site-footer">
<p>© 2025 ShrinkiFly. All Rights Reserved.</p>
<p>
<a href="terms.html">Terms of Use</a>
<a href="privacy.html">Privacy Policy</a>
</p>
</footer>
<script>
(function () {
function isProUser() {
try {
const license = JSON.parse(localStorage.getItem("shrinkifly_license"));
return license && license.valid;
} catch {
return false;
}
}
function loadAdsense() {
if (window.__adsenseLoaded) return;
const script = document.createElement("script");
script.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js";
script.async = true;
document.body.appendChild(script);
script.onload = () => {
document.querySelectorAll(".adsense-slot").forEach(slot => {
slot.style.display = "flex";
try {
(window.adsbygoogle = window.adsbygoogle || []).push({});
} catch {}
});
};
window.__adsenseLoaded = true;
}
window.addEventListener("load", () => {
if (!isProUser()) {
loadAdsense();
}
});
// If user upgraded elsewhere (index.html)
window.addEventListener("shrinkifly:proActivated", () => {
document.querySelectorAll(".adsense-slot").forEach(ad => ad.remove());
});
})();
</script>
</body>
</html>