-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathprivacy.html
More file actions
58 lines (51 loc) · 2.6 KB
/
privacy.html
File metadata and controls
58 lines (51 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>IntelHub - Privacy Policy</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
padding: 40px;
background-color: #f9f9f9;
color: #222;
max-width: 800px;
margin: auto;
}
h1, h2 {
color: #e74c3c;
}
a {
color: #3498db;
}
</style>
</head>
<body>
<h1>Privacy Policy – IntelHub</h1>
<p><strong>Effective date:</strong> [Insert Date]</p>
<p>IntelHub is a Chrome extension that helps users access and organize Open Source Intelligence (OSINT) tools directly in their browser. Your privacy is important to us. This page outlines what data we collect and how we use it.</p>
<h2>1. Data Collection</h2>
<p>IntelHub <strong>does not collect</strong>, <strong>store</strong>, or <strong>transmit</strong> any personal data, browsing history, or user content.</p>
<p>All metadata analysis (images, PDF, Office files) is processed <strong>locally</strong> on your device and not uploaded to any server.</p>
<h2>2. Permissions Explanation</h2>
<ul>
<li><strong>activeTab</strong>: Used to detect the currently active tab when the user interacts with it (e.g., for reverse image search).</li>
<li><strong>storage</strong>: Used to save user preferences such as favorites and selected engines <strong>locally</strong>.</li>
<li><strong>scripting</strong>: Required for injecting scripts when the user chooses to extract image URLs.</li>
<li><strong>host_permissions</strong>: Needed for fetching the tool list from GitHub or analyzing site content.</li>
</ul>
<p>None of these permissions are used to track or profile users.</p>
<h2>3. No Third-Party Sharing</h2>
<p>IntelHub does not share any user data with third parties. It does not use cookies or analytics services.</p>
<h2>4. Security</h2>
<p>All processing is done locally on your device. The only external request is to fetch the tool list from the official GitHub repository:</p>
<p><a href="https://github.com/tomsec8/IntelHub" target="_blank">https://github.com/tomsec8/IntelHub</a></p>
<h2>5. Changes to This Policy</h2>
<p>Any changes to this privacy policy will be published here and reflected in the GitHub repository and the Chrome Web Store listing.</p>
<h2>6. Contact</h2>
<p>If you have any questions or concerns about this policy, feel free to open an issue on GitHub:</p>
<p><a href="https://github.com/tomsec8/IntelHub" target="_blank">https://github.com/tomsec8/IntelHub</a></p>
</body>
</html>