diff options
| author | Teddy Wing | 2014-03-24 18:32:11 -0400 |
|---|---|---|
| committer | Teddy Wing | 2014-03-24 18:32:11 -0400 |
| commit | b5f69d0b3426e86507a88e6f3bda5e758a8fd497 (patch) | |
| tree | 3f6027e712cbfd689432532688fb4c6d325471a7 /chrome-get-urls-from-tabs-in-windows.html | |
| download | chrome-copy-urls-from-all-tabs-b5f69d0b3426e86507a88e6f3bda5e758a8fd497.tar.bz2 | |
Initial commit: initial working version
From 2014.03.17. Clicking on the extension's icon button opens a new
tab containing a textarea with all URLs in open tabs collected by
window.
Diffstat (limited to 'chrome-get-urls-from-tabs-in-windows.html')
| -rw-r--r-- | chrome-get-urls-from-tabs-in-windows.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chrome-get-urls-from-tabs-in-windows.html b/chrome-get-urls-from-tabs-in-windows.html new file mode 100644 index 0000000..3d2fbf8 --- /dev/null +++ b/chrome-get-urls-from-tabs-in-windows.html @@ -0,0 +1,20 @@ +<!doctype html> +<html> +<head> + <title>Chrome Copy URLs From All Tabs</title> + + <style> + textarea { width: 600px; height: 900px; font-size: 13px; line-height: 1.6; } + + #header { font-weight: bold; } + </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> |
