-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolicy.html
More file actions
154 lines (146 loc) · 5.11 KB
/
policy.html
File metadata and controls
154 lines (146 loc) · 5.11 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
147
148
149
150
151
152
153
154
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Legal Information - MyGiulia</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body class="policy-body">
<div class="policy-container">
<h1>Legal Information & Privacy Policy</h1>
<p>
<strong>Service:</strong> MyGiulia Mobile App & My Giulia Telemetry
Analyzer
</p>
<div class="url-box">
Official Website:
<a href="https://my-giulia.com/">https://my-giulia.com/</a>
</div>
<p><em>Last Updated: December 31, 2025</em></p>
<hr />
<section>
<h2>1. Terms of Service</h2>
<p>
By downloading the <strong>MyGiulia</strong> app or using the
<strong>My Giulia Telemetry Analyzer</strong>, you agree to these
terms provided by Tomasz Żebrowski as Open Source tools "as is."
</p>
<p>
<strong>Safe Use:</strong> The user is solely responsible for the safe
operation of their vehicle. You agree not to interact with the
application while driving.
</p>
</section>
<section class="danger-section">
<h2>2. Disclaimer of Liability</h2>
<p>
<strong
>Tomasz Żebrowski takes no responsibility for any damages arising
from the use of the app or website.</strong
>
</p>
<ul>
<li>
<strong>Vehicle/Hardware Damage:</strong> No liability for ECU,
wiring, mobile devices, or OBD-II adapters.
</li>
<li>
<strong>Safety & Legal:</strong> No liability for accidents,
injuries, or legal fines.
</li>
</ul>
</section>
<section class="highlight-section">
<h2>3. Vehicle Data Privacy & Sovereignty</h2>
<p><strong>Your car's data remains yours.</strong></p>
<ul>
<li>
<strong>Local Browser Processing:</strong> All telemetry files are
analyzed <strong>locally within your web browser</strong>. Data is
never uploaded to our servers.
</li>
<li>
<strong>No Data Sharing:</strong> We do not share, sell, or transmit
telemetry or GPS data to any third parties.
</li>
</ul>
</section>
<section id="google-api-disclosure">
<h2>4. Google API Disclosure (Google Drive Access)</h2>
<p>
<strong>Justification:</strong> The application is a vehicle telemetry
analyzer. It requires the <code>drive.readonly</code> scope so that
users can select and download their own JSON trip logs previously
uploaded to Google Drive by the companion MyGiulia Android app. All
data is processed locally in the browser memory for visualization on
charts; no user data is stored on external servers or shared with
third parties.
</p>
<ul>
<li>
<strong>Access Scope:</strong> The App requests the
<code>https://www.googleapis.com/auth/drive.readonly</code> scope.
</li>
<li>
<strong>Usage:</strong> This is used strictly to read JSON telemetry
files selected by the user for visualization purposes.
</li>
<li>
<strong>Data Handling:</strong> Files retrieved from Google Drive
are processed in the browser's volatile memory and are not stored,
cached, or transmitted to any external server.
</li>
</ul>
</section>
<section>
<h2>5. Third-Party Services</h2>
<p>We use standard services for stability and performance.</p>
<ul>
<li>
<strong>Google Play Services:</strong> Subject to
<a href="https://www.google.com/policies/privacy/" target="_blank"
>Google's Privacy Policy</a
>.
</li>
<li>
<strong>Cookies/Local Storage:</strong> Used only to save UI
preferences locally on your device.
</li>
</ul>
</section>
<section>
<h2>6. Contact Us</h2>
<p>
Questions? Contact me at:
<a href="mailto:support@my-giulia.com">support@my-giulia.com</a>
</p>
</section>
<div class="footer">
<p>
© 2025 Tomasz Żebrowski. All rights reserved.<br />
<em
>MyGiulia is an independent project and is not affiliated with any
vehicle manufacturer.</em
>
</p>
<a
href="index.html"
style="
text-decoration: none;
color: var(--text-muted);
font-size: 0.8rem;
margin-bottom: 10px;
display: block;
"
>
<i class="fas fa-arrow-left"></i> Back to Documentation
</a>
</div>
</div>
</body>
</html>