-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.html
More file actions
49 lines (40 loc) · 1.08 KB
/
settings.html
File metadata and controls
49 lines (40 loc) · 1.08 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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Mute Defaults</title>
<script src="settings.js"></script>
<style>
body {
width: 250px;
}
input[type=checkbox], input[type=radio] {
vertical-align: middle;
position: relative;
bottom: 1px;
}
input[type=radio] {
bottom: 2px;
}
</style>
</head>
<body>
<h2><a href="http://github.com/jjshoe/MuteDefaults" target="_blank">Mute Defaults</a></h2>
<label>
<input type="checkbox" id="muteMicrophone" name="muteMicrophone"/>
Mute the microphone automatically
</label>
<br>
<label>
<input type="checkbox" id="muteCamera" name="muteCamera" />
Mute the camera automatically
</label>
<p>
For support visit <a href="http://github.com/jjshoe/MuteDefaults/issues" target="_blank">Mute Defaults</a> on github.
</p>
</body>
</html>