blob: 90e401353f4a1ac94643dcd9afb801a416bbffc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!doctype html>
<html>
<head>
<title>Chrome Copy URLs From All Tabs</title>
<style>
html, body { height: 100%; }
textarea { width: 600px; height: 90%; 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="chrome-get-urls-from-tabs-in-windows.js"></script>
<script src="page.js"></script>
</body>
</html>
|