-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
97 lines (80 loc) · 3.31 KB
/
privacy.html
File metadata and controls
97 lines (80 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | DrivePull Pro</title>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body {
background: #0a0a0c;
color: #fff;
font-family: 'Outfit', sans-serif;
line-height: 1.8;
padding: 40px 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: #16161a;
padding: 60px;
border-radius: 24px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 30px;
letter-spacing: -1px;
}
h2 {
font-size: 1.5rem;
margin-top: 40px;
margin-bottom: 15px;
color: #4285F4;
}
p {
color: #88888b;
margin-bottom: 20px;
}
.back {
margin-top: 40px;
display: inline-block;
color: #4285F4;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p>Effective Date: February 23, 2026</p>
<p>DrivePull Pro ("we", "us", or "our") is committed to protecting your privacy. This Privacy Policy explains
how our After Effects extension handles your data.</p>
<h2>1. Data Collection</h2>
<p>DrivePull Pro does NOT collect, store, or share any personal data. We do not have a backend server that
stores your files, filenames, or Google account credentials.</p>
<h2>2. Use of Google Data</h2>
<p>Our extension uses the Google Drive API to allow you to browse and download files from your personal Google
Drive or shared links directly into After Effects.
When you log in, your Google Access Token is stored ONLY on your local machine via After Effects' local
storage. This token is used solely to authenticate your requests to Google's servers.</p>
<h2>3. Data Sharing</h2>
<p>We do not share any data with third parties. All interactions with Google Drive occur directly between your
local machine and Google's official APIs.</p>
<h2>4. Permissions (drive.file)</h2>
<p>We use the <b>drive.file</b> scope, which means our extension can only access files that you explicitly
choose or open with the application. We do not have broad access to your entire Drive unless you
specifically interact with a file.</p>
<h2>5. Content Security</h2>
<p>DrivePull Pro acts as a local bridge. We do not track what you download or what projects you are working on.
<h2>6. Data Deletion</h2>
<p>DrivePull Pro does not store any user data on external servers.
If you wish to revoke access, you can remove the application from your
Google Account security settings at any time.
</p>
<p>If you have questions or requests regarding data handling, you can contact us at:
<strong>kyzenfr2@gmail.com</strong>
</p>
<a href="index.html" class="back">← Back to Home</a>
</div>
</body>
</html>