forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
44 lines (43 loc) · 1.02 KB
/
options.html
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
<!DOCTYPE>
<!--
* Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
* source code is governed by a BSD-style license that can be found in the
* LICENSE file.
-->
<html>
<head>
<title>Options for the Send as Email extension</title>
<style>
#providerSelection {
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
}
</style>
<script src="options.js"></script>
</head>
<body>
<table class="simple">
<tr>
<td rowspan="2" valign="top" align="center" width="80">
<img src="mail_128x128.png" width="64" height="64" />
</td>
<td height="22"></td>
</tr>
<tr>
<td valign="center">
<div id="providerSelection">
<strong>Select provider to use when emailing a web page address:</strong>
<br /><br />
<label>
<input id="default" type="radio" name="mailto" value="mailto" checked>
Your default mail handler<br>
</label>
<label>
<input id="gmail" type="radio" name="mailto" value="gmail">Gmail<br>
</label>
</div>
</td>
</tr>
</table>
</body>
</html>