-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathexptabs.js
102 lines (89 loc) · 3.44 KB
/
exptabs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
var targetWindow = null;
var tabCount = 0;
function start(tab) {
chrome.windows.getCurrent(getWindows);
}
function getWindows(win) {
targetWindow = win;
chrome.tabs.getAllInWindow(targetWindow.id, getTabs);
}
function getTabs(tabs) {
tabCount = tabs.length;
chrome.windows.getAll({"populate" : true}, expTabs);
}
function expTabs(windows) {
var numWindows = windows.length;
var exportAll = document.getElementById('inclAll').checked == true ? 1 : 0;
document.getElementById('content').value = '';
for (var i = 0; i < numWindows; i++) {
var win = windows[i];
if (targetWindow.id == win.id || exportAll == 1) {
var numTabs = win.tabs.length;
for (var j = 0; j < numTabs; j++) {
var tab = win.tabs[j];
if (document.getElementById('inclTitle').checked == true) {
document.getElementById('content').value += tab.title + '\n';
}
document.getElementById('content').value += tab.url + '\n\n';
}
}
}
}
function openTabs() {
var content = document.getElementById('content').value;
var rExp = new RegExp(
"(^|[ \t\r\n])((ftp|http|https|news|file|view-source|chrome):(([A-Za-z0-9$_.+!*(),;/?:@&~=-])|%[A-Fa-f0-9]{2}){2,}(#([a-zA-Z0-9][a-zA-Z0-9$_.+!*(),;/?:@&~=%-]*))?([A-Za-z0-9$_+!*();/?:~-])*)"
,"g"
);
var newTabs = content.match(rExp);
if (newTabs != null) {
var newTabsLen = newTabs.length;
for (var j = 0; j < newTabsLen; j++) {
var nt = newTabs[j];
chrome.tabs.create({url: nt, active: false });
}
} else {
alert('Only fully qualified URLs will be opened.');
}
}
function sendMail(gm) {
var action_url = "mailto:?";
//action_url += "subject=" + encodeURIComponent(subject) + "&";
action_url += "body=" + encodeURIComponent(document.getElementById('content').value);
if (gm == 1) {
var custom_url = "https://mail.google.com/mail/?extsrc=mailto&url=%s";
action_url = custom_url.replace("%s", encodeURIComponent(action_url));
chrome.tabs.create({ url: action_url });
} else {
chrome.tabs.update(tab_id, { url: action_url });
}
}
function download() {
var content = document.getElementById('content').value
var content_arr = content.split('\n\n');
var data = '<html><head></head><body>';
for (var i = 0; i < content_arr.length; i++) {
var content_url = content_arr[i].split('\n');
if (document.getElementById('inclTitle').checked == true) {
data+='<a href="'+content_url[1]+'">'+content_url[0]+'</a><br/>';
} else {
data+='<a href="'+content_arr[i]+'">'+content_arr[i]+'</a><br/>';
}
}
data+='</body></html>';
var blob = new Blob([data], {type: "text/html;charset=utf-8"});
var url = URL.createObjectURL(blob);
var a = document.createElement('a');
a.download = "tabs.html";
a.href = url;
a.click();
}
document.addEventListener('DOMContentLoaded', function () {
document.querySelector('#btOpenTabs').addEventListener('click', openTabs);
document.querySelector('#inclTitle').addEventListener('click', start);
document.querySelector('#inclAll').addEventListener('click', start);
document.querySelector('#sendMail0').addEventListener('click', function(){sendMail(0)});
document.querySelector('#sendMail1').addEventListener('click', function(){sendMail(1)});
document.querySelector('#download').addEventListener('click', download);
start();
});