9b56884f53
It's janky and I'm never going to support other languages anyway.
77 lignes
1,6 Kio
HTML
77 lignes
1,6 Kio
HTML
<!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>
|