blob: 7fdf2573b2cb94d76fe2284d4bf0dab2bfdc6313 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<div id="extension-header">
<h1 class="headline">Transparent Zen</h1>
</div>
<div id="extension-body">
<form id="extension-settings">
<label class="setting">
<input type="checkbox" name="enable-transparency">
Enable Transparency (no effect yet)
</label>
</form>
<div id="extension-description">
<p>Transparent Zen is a Zen Browser extension that makes supported websites transparent.</p>
<p>Transparent Zen is open source and everyone can contribute their custom styles to support more websites.</p>
<a href="https://github.com/frostybiscuit/transparent-zen">GitHub Repository</a>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>
|