-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpopup.html
35 lines (35 loc) · 1.15 KB
/
popup.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
<html>
<head>
<style>
html { width: 630px; height: 420px; }
body {
overflow: hidden;
margin: 10px 15px 0px;
padding: 0px;
background: white;
font-family: sans-serif;
font-size: 0.8em;
height: 400px;
}
input { margin-top: 5px; }
#content {
width: 600px;
height: 350px;
margin-top: 5px;
border: 1px solid #dddddd;
background: #fafafa;
}
</style>
<script type="text/javascript" src="exptabs.js"></script>
</head>
<body>
<form>
Include: <label><input id="inclTitle" type="checkbox" value="1" checked="checked" /> Title</label> <label><input id="inclAll" type="checkbox" value="1" /> All Windows</label><br />
<textarea id="content"></textarea>
<input type="button" id="sendMail1" value="Call Gmail" />
<input type="button" id="sendMail0" value="Call 'Mailto:'" />
<input type="button" id="btOpenTabs" value="Open all of the above URLs in new tabs" />
<input type="button" id="download" value="Download as html" />
</form>
</body>
</html>