aboutsummaryrefslogtreecommitdiffstats
path: root/chrome-get-urls-from-tabs-in-windows.html
blob: 648062e99a0432554baf9f830990d5681700fa9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html>
<head>
	<title>Chrome Copy URLs From All Tabs</title>
	
	<style>
		html, body { height: 100%; font-family: Helvetica, sans-serif; }
		
		textarea { width: 600px; height: 85%; font: 13px/1.6 Courier, monospace; }
		
		#header { font-size: 18px; font-weight: bold; }
	</style>
</head>
<body>
	<p id="header"></p>
	
	<p id="download-link"></p>
	
	<textarea id="copy-area"></textarea>
	
	<script src="chrome-get-urls-from-tabs-in-windows.js"></script>
	<script src="page.js"></script>
</body>
</html>