-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
43 lines (37 loc) · 1.89 KB
/
privacy.html
File metadata and controls
43 lines (37 loc) · 1.89 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>隐私权政策 - 日课一问</title>
<style>
body { font-family: sans-serif; line-height: 1.6; max-width: 800px; margin: 40px auto; padding: 0 20px; color: #333; }
h1 { border-bottom: 2px solid #eee; padding-bottom: 10px; }
h2 { margin-top: 30px; }
</style>
</head>
<body>
<h1>日课一问 | 隐私权政策</h1>
<p>最近更新日期:2026年3月6日</p>
<p>「日课一问」(Daily Question)是一款注重隐私的浏览器扩展程序。本政策旨在说明我们如何处理用户数据。</p>
<h2>1. 数据收集与使用</h2>
<p>本扩展程序是一个<strong>纯本地运行</strong>的工具。我们<strong>不会</strong>收集、存储或传输您的任何个人身份信息、浏览历史或敏感数据。</p>
<h2>2. 本地存储声明</h2>
<p>为了实现核心功能,扩展程序会使用 <code>chrome.storage</code> 权限在您的设备本地存储以下信息:</p>
<ul>
<li>年度进度矩阵的状态(已完成的天数计数)。</li>
<li>当前抽取的问题 ID。</li>
<li>用户简单的偏好设置。</li>
</ul>
<p>这些数据仅存储在您的本地浏览器中,不会上传到任何服务器。</p>
<h2>3. 权限说明</h2>
<ul>
<li><strong>storage</strong>:用于在本地保存您的思考进度。</li>
<li><strong>tabs</strong>:用于在新标签页正常展示卡片界面。</li>
</ul>
<h2>4. 政策修改</h2>
<p>如果我们将来对数据处理方式做出调整,将通过更新本页面进行告知。</p>
<h2>5. 联系方式</h2>
<p>如有任何疑问,请通过 GitHub 仓库(https://github.com/cnfeat/DailyQuestion)联系开发者。</p>
</body>
</html>