blob: 305cb2e80befc3fd501ef57e7ab6f8f29624f04c (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZenInternet - Advanced Settings</title>
<link rel="stylesheet" href="../theme.css">
<link rel="stylesheet" href="../popup/popup.css">
<link rel="stylesheet" href="data-viewer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="container">
<header class="app-header">
<div class="logo-container">
<img src="../assets/images/logo_48.png" alt="ZenInternet Logo" class="logo-img">
<h1 class="app-title">ZenInternet Settings</h1>
</div>
<div class="author">by <a href="https://www.sameerasw.com/" target="_blank">@sameerasw</a></div>
<div id="addon-version" class="addon-version"></div>
</header>
<main class="app-content">
<div class="actions">
<button id="back-button" class="action-button secondary">
<i class="fas fa-arrow-left"></i> Back to Extension
</button>
</div>
<div class="toggle-setting-container">
<div class="toggle-container">
<label class="toggle-switch">
<input type="checkbox" id="disable-transparency">
<span class="slider round"></span>
</label>
<span class="toggle-label">Disable Transparency Globally</span>
</div>
<div class="setting-description">
This will disable all transparency features while keeping other styling effects active
</div>
</div>
<div class="data-section">
<h2 class="section-title">Global Settings</h2>
<div id="global-settings-data" class="data-container"></div>
</div>
<div class="data-section">
<h2 class="section-title">Skip/Enable List</h2>
<div id="skip-list-data" class="data-container"></div>
</div>
<div class="danger-zone">
<h3 class="danger-title">Danger Zone</h3>
<div class="danger-actions">
<button id="delete-all-data" class="action-button danger">
<i class="fas fa-trash"></i> Delete All Data
</button>
</div>
</div>
<div class="data-section">
<h2 class="section-title">Websites and CSS</h2>
<div id="combined-websites-data" class="data-container"></div>
</div>
</main>
<footer class="app-footer">
<a href="https://sameerasw.github.io/my-internet/" class="footer-link" target="_blank">
<i class="fas fa-book"></i> Styles Repository
</a>
<div class="footer-divider"></div>
<a href="https://github.com/sameerasw/zeninternet" class="footer-link" target="_blank">
<i class="fa-brands fa-github"></i> Project Repository
</a>
</footer>
</div>
<script src="data-viewer.js"></script>
</body>
</html>
|