forked from normful/Chrome-Audio-Capturer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.js
91 lines (84 loc) · 2.41 KB
/
options.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
document.addEventListener('DOMContentLoaded', () => {
const mute = document.getElementById('mute');
const maxTime = document.getElementById('maxTime');
const save = document.getElementById('save');
const status = document.getElementById('status');
const mp3Select = document.getElementById('mp3');
const wavSelect = document.getElementById('wav');
const quality = document.getElementById("quality");
const qualityLi = document.getElementById("qualityLi");
const limitRemoved = document.getElementById("removeLimit");
let currentFormat;
//initial settings
chrome.storage.sync.get({
muteTab: false,
maxTime: 1200000,
format: "mp3",
quality: 192,
limitRemoved: false
}, (options) => {
mute.checked = options.muteTab;
limitRemoved.checked = options.limitRemoved;
maxTime.disabled = options.limitRemoved;
maxTime.value = options.maxTime/60000;
currentFormat = options.format;
if (options.format === "mp3") {
mp3Select.checked = true;
qualityLi.style.display = "block";
} else {
wavSelect.checked = true;
}
if (options.quality === "96") {
quality.selectedIndex = 0;
} else if(options.quality === "192") {
quality.selectedIndex = 1;
} else {
quality.selectedIndex = 2;
}
});
mute.onchange = () => {
status.innerHTML = "";
}
maxTime.onchange = () => {
status.innerHTML = "";
if(maxTime.value > 20) {
maxTime.value = 20;
} else if (maxTime.value < 1) {
maxTime.value = 1;
} else if (isNaN(maxTime.value)) {
maxTime.value = 20;
}
}
mp3Select.onclick = () => {
currentFormat = "mp3";
qualityLi.style.display = "block";
status.innerHTML = "";
}
wavSelect.onclick = () => {
currentFormat = "wav";
qualityLi.style.display = "none";
status.innerHTML = "";
}
quality.onchange = (e) => {
status.innerHTML = "";
}
limitRemoved.onchange = () => {
if(limitRemoved.checked) {
maxTime.disabled = true;
status.innerHTML = "WARNING: Recordings that are too long may not save properly!"
} else {
maxTime.disabled = false;
status.innerHTML = "";
}
}
save.onclick = () => {
chrome.storage.sync.set({
muteTab: mute.checked,
maxTime: maxTime.value*60000,
format: currentFormat,
quality: quality.value,
limitRemoved: limitRemoved.checked
});
status.innerHTML = "Settings saved!"
}
});