-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprivacy.html
More file actions
81 lines (72 loc) · 2.69 KB
/
Copy pathprivacy.html
File metadata and controls
81 lines (72 loc) · 2.69 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
<!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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 720px;
margin: 40px auto;
padding: 0 20px;
line-height: 1.7;
color: #222;
}
h1 { font-size: 1.6rem; }
h2 { font-size: 1.1rem; margin-top: 1.6rem; }
a { color: #6a1b9a; }
</style>
</head>
<body>
<h1>沉浸式学习英语 — 隐私政策</h1>
<p>最后更新:2026-05-28</p>
<p>
「沉浸式学习英语」(以下简称「本扩展」)尊重您的隐私。本政策说明本扩展如何处理信息。
</p>
<h2>1. 我们收集哪些数据?</h2>
<p>
本扩展<strong>不收集、不上传、不出售</strong>您的个人身份信息或浏览内容。
以下设置仅保存在您浏览器本地的 <code>chrome.storage.local</code> 中:
</p>
<ul>
<li>是否启用功能</li>
<li>翻译等级(A1~C1)</li>
<li>是否仅当前等级</li>
<li>下划线颜色</li>
</ul>
<h2>2. 网络请求</h2>
<p>
本扩展核心功能完全离线运行。翻译使用内置本地词库,不会在后台将网页内容发送到我们的服务器或第三方 API。
</p>
<h2>3. 权限说明</h2>
<ul>
<li><strong>storage</strong>:保存您的偏好设置</li>
<li><strong>activeTab</strong>:与当前标签页通信以更新统计信息</li>
<li><strong>内容脚本</strong>:在网页中识别中文并按等级替换词汇;处理在本地完成</li>
</ul>
<h2>4. 词库与第三方数据</h2>
<p>
词库基于 CC-CEDICT(CC BY-SA 4.0)及 Oxford 5000 词表整理,打包在扩展内本地使用。
</p>
<h2>5. 儿童隐私</h2>
<p>本扩展不面向 13 岁以下儿童主动收集个人信息。</p>
<h2>6. 政策变更</h2>
<p>如有更新,将在本页面修订「最后更新」日期。</p>
<h2>7. 联系我们</h2>
<p>
项目地址:
<a href="https://github.com/code-corey/EnglishViewLearner">github.com/code-corey/EnglishViewLearner</a>
</p>
<hr>
<h1>Privacy Policy (English)</h1>
<p>Last updated: 2026-05-28</p>
<p>
Immersive English Learning does not collect, upload, or sell personal data.
Settings (enable state, CEFR level, level-only mode, underline color) are stored locally via
<code>chrome.storage.local</code> only. Core translation runs offline with a bundled dictionary;
page content is not sent to our servers. Contact:
<a href="https://github.com/code-corey/EnglishViewLearner">GitHub repository</a>.
</p>
</body>
</html>