-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
102 lines (85 loc) 路 3.11 KB
/
Copy pathprivacy.html
File metadata and controls
102 lines (85 loc) 路 3.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dedupe Tabs Pro Privacy Policy</title>
<style>
:root {
color-scheme: light dark;
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", sans-serif;
}
body {
margin: 0;
color: #202124;
background: #f8fafb;
}
main {
width: min(760px, calc(100vw - 40px));
margin: 48px auto;
padding-bottom: 48px;
}
h1 {
margin: 0 0 8px;
font-size: 32px;
line-height: 1.2;
letter-spacing: 0;
}
.effective-date {
margin: 0 0 28px;
color: #5f6368;
font-size: 14px;
}
h2 {
margin: 30px 0 10px;
font-size: 19px;
line-height: 1.35;
letter-spacing: 0;
}
p {
margin: 0 0 14px;
font-size: 16px;
line-height: 1.6;
}
a {
color: #1558d6;
text-underline-offset: 3px;
}
@media (prefers-color-scheme: dark) {
body {
color: #e8eaed;
background: #202124;
}
.effective-date {
color: #bdc1c6;
}
a {
color: #8ab4f8;
}
}
</style>
</head>
<body>
<main>
<h1>Dedupe Tabs Pro Privacy Policy</h1>
<p class="effective-date">Effective date: July 19, 2026</p>
<p>Dedupe Tabs Pro is a Chrome extension that helps users find and close duplicate browser tabs.</p>
<h2>Information the Extension Uses</h2>
<p>Dedupe Tabs Pro reads the URLs and titles of currently open browser tabs. This information is used only to identify duplicate tabs, display duplicate tab groups, show when duplicates are available, and close duplicate tabs when the user chooses.</p>
<p>The extension also stores user preferences, such as whether query parameters are ignored while matching duplicate URLs and whether duplicate matching runs across all windows or only the active window.</p>
<h2>How Information Is Stored</h2>
<p>User preferences are stored using Chrome extension storage. Developer-only profiling settings, when manually enabled during testing, are stored locally in the browser.</p>
<p>Dedupe Tabs Pro does not transmit tab URLs, tab titles, preferences, or profiling information to any external server.</p>
<h2>Data Sharing</h2>
<p>Dedupe Tabs Pro does not sell, share, transfer, or disclose user data to third parties.</p>
<h2>Advertising and Tracking</h2>
<p>Dedupe Tabs Pro does not use analytics, advertising, tracking pixels, remote code, or third-party scripts.</p>
<h2>Remote Code</h2>
<p>Dedupe Tabs Pro does not load or execute remote code. All JavaScript, CSS, images, and other assets are included in the extension package.</p>
<h2>Contact</h2>
<p>For questions about this privacy policy, contact Mohnish Thallavajhula at <a href="mailto:hi@iam.mt">hi@iam.mt</a>.</p>
</main>
</body>
</html>