-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
51 lines (33 loc) · 1.19 KB
/
background.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
senderDetails = {};
var globalPort;
// 'save' function, credits go to:
// https://github.com/bgrins/devtools-snippets/blob/master/snippets/console-save/console-save.js
function save(data,filename){
filename = (filename) ? filename : 'formInput.json';
if(typeof data === "object"){
data = JSON.stringify(data, undefined, 4)
}
var blob = new Blob([data], {type: 'text/json'}),
e = document.createEvent('MouseEvents'),
a = document.createElement('a')
a.download = filename
a.href = window.URL.createObjectURL(blob)
a.dataset.downloadurl = ['text/json', a.download, a.href].join(':')
e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null)
a.dispatchEvent(e)
}
chrome.browserAction.onClicked.addListener(function(tab){
if(!globalPort){
alert('Make sure to refresh your web page before you click this extension icon');
}else{
globalPort.postMessage({command:'getFormsValues'});
}
});
chrome.runtime.onConnect.addListener(function(port){
globalPort = port;
port.onMessage.addListener(function(msg,port){
if(msg && msg.type == 'answer'){
save(msg.data);
}
})
})