blob: 1fd31419763ef1a1e7646e98b2c36de39193c285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!doctype html>
<html>
<head>
<title>Chrome Copy URLs From All Tabs</title>
<style>
textarea { width: 600px; height: 900px; font: 13px/1.6 Courier, monospace; }
#header { font: bold 18px Helvetica, sans-serif; }
</style>
</head>
<body>
<p id="header"></p>
<textarea id="copy-area"></textarea>
<script src="yaml.min.js"></script>
<script src="chrome-get-urls-from-tabs-in-windows.js"></script>
<script src="page.js"></script>
</body>
</html>
|