-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
123 lines (112 loc) · 4.44 KB
/
privacy-policy.html
File metadata and controls
123 lines (112 loc) · 4.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bionic Reader - Privacy Policy</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #2c3e50;
border-bottom: 2px solid #eee;
padding-bottom: 10px;
}
h2 {
color: #34495e;
margin-top: 30px;
}
p {
margin: 15px 0;
}
.last-updated {
color: #666;
font-style: italic;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
}
ul {
margin: 15px 0;
padding-left: 20px;
}
li {
margin: 8px 0;
}
</style>
</head>
<body>
<h1>Privacy Policy for Bionic Reader</h1>
<h2>Introduction</h2>
<p>
This privacy policy explains how the Bionic Reader Chrome extension handles user data.
We are committed to protecting your privacy and being transparent about our practices.
</p>
<h2>Single Purpose Description</h2>
<p>
The Bionic Reader extension serves a single purpose: to enhance reading speed and comprehension by transforming text into Bionic Reading format, which highlights key parts of words to guide the reader's eye movement.
</p>
<h2>Permission Justification</h2>
<ul>
<li>
<strong>activeTab</strong>: This permission is required to modify the text display on the current webpage. We use it to:
<ul>
<li>Access and modify the text content of the active tab</li>
<li>Apply Bionic Reading formatting to the text</li>
<li>This permission is essential for the core functionality of transforming text into Bionic Reading format</li>
</ul>
</li>
<li>
<strong>storage</strong>: This permission is required to:
<ul>
<li>Save user preferences (such as whether the feature is enabled)</li>
<li>Store formatting settings (bold percentage and minimum word length)</li>
<li>Maintain consistent user experience across browser sessions</li>
</ul>
</li>
</ul>
<h2>Data Collection and Usage</h2>
<p>
The Bionic Reader extension does not collect, store, or transmit any personal data.
All text processing is done locally in your browser, and no information is sent to external servers.
</p>
<h2>Local Storage</h2>
<p>
The extension uses Chrome's local storage API only to save your preferences (such as whether the feature is enabled
and your formatting preferences). These settings are stored locally on your device and are not transmitted anywhere.
</p>
<h2>Third-Party Services</h2>
<p>
This extension does not use any third-party services or analytics tools. It operates entirely within your browser.
</p>
<h2>Data Security</h2>
<p>
Since no data is collected or stored externally, there are no security risks related to data breaches or unauthorized access to user data.
</p>
<h2>Limited Use Disclosure</h2>
<p>
This extension's use and transfer of information received from Google APIs adheres to the
<a href="https://developer.chrome.com/docs/webstore/program_policies/#limited_use" target="_blank">Chrome Web Store User Data Policy</a>,
including the Limited Use requirements.
</p>
<h2>Changes to This Policy</h2>
<p>
If we make any changes to this privacy policy, we will update this page and the version number in the Chrome Web Store.
Users will be notified of any significant changes through the extension's update notes.
</p>
<h2>Contact</h2>
<p>
If you have any questions about this privacy policy or the extension, please contact us through the Chrome Web Store support channel
or create an issue on our <a href="https://github.com/sylvial928/bionic-reader" target="_blank">GitHub repository</a>.
</p>
<div class="last-updated">
Last updated: December 19, 2023
</div>
</body>
</html>