-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpopup.htm
77 lines (74 loc) · 1.6 KB
/
popup.htm
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
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: caption, sans-serif;
}
button, label {
display: block;
width: 100%;
}
button {
margin: 2px 0;
padding: 2px;
text-align: left;
}
label {
font-size: small;
}
img {
vertical-align: bottom;
height: 16px;
}
</style>
<form>
<em>With:</em>
<button data-gen="genGoogleUrl">
<img src="icons/cacheicons/google.png">
Google
</button>
<button data-gen="genGoogleTextUrl">
<img src="icons/cacheicons/google.png">
Google (text only)
</button>
<button data-gen="genIaUrl">
<img src="icons/cacheicons/waybackmachine.png">
The Internet Archive
</button>
<button data-gen="genIaListUrl">
<img src="icons/cacheicons/waybackmachine.png">
The Internet Archive (list all)
</button>
<button data-gen="genArchiveIsUrl">
<img src="icons/cacheicons/archiveis.png">
archive.is
</button>
<button data-gen="genWebCiteUrl">
<img src="icons/cacheicons/webcitation.png">
WebCite
</button>
<button data-gen="genMementoUrl">
<img src="icons/cacheicons/mementoweb.png">
Memento Timetravel
</button>
<div style='line-height: 8px;'> </div>
<em>In:</em>
<label>
<input type="radio" name="openIn" value="0">
the current tab
</label>
<label>
<input type="radio" name="openIn" value="1">
a new tab (foreground)
</label>
<label>
<input type="radio" name="openIn" value="2">
a new tab (background)
</label>
<label>
<input type="radio" name="openIn" value="3">
a new window
</label>
</form>
<script src="common.js"></script>
<script src="popup.js"></script>