-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
33 lines (32 loc) · 1014 Bytes
/
options.html
File metadata and controls
33 lines (32 loc) · 1014 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Tab Tree Tracker Options</title>
<style>
body { font-family: Arial, sans-serif; padding: 20px; }
textarea { width: 100%; height: 200px; }
select { margin-top: 10px; }
</style>
</head>
<body>
<h1>Tab Tree Tracker Options</h1>
<h2>Excluded Domains</h2>
<p>Enter one domain per line. Tabs from these domains will not be tracked.</p>
<textarea id="excludedDomains"></textarea>
<h2>Privacy Settings</h2>
<label>
<input type="checkbox" id="enableContentAnalysis">
Enable content analysis (extracts top words from pages)
</label>
<p style="font-size: 12px; color: #666; margin-top: 5px;">
When enabled, the extension will analyze page content to extract frequently used words.
This data is stored locally and never transmitted to external servers.
</p>
<h2>Time Zone</h2>
<select id="timeZone"></select>
<br><br>
<button id="save">Save</button>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>