-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.js
81 lines (72 loc) · 2.53 KB
/
popup.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
let statusBar = document.getElementById("status-bar");
let btnVideoPlay = document.getElementById("video-play");
let btnAudioPlay = document.getElementById("audio-play");
let btnFitResoultion = document.getElementById("fit-resolution");
let btnVideoDownload = document.getElementById("video-download");
let btnAudioDownload = document.getElementById("audio-download");
let inputResolution = document.getElementById("input-resolution");
function updateStatus (status, color) {
statusBar.innerText = status;
statusBar.style.color = color;
}
function runLoader (cmdline) {
updateStatus("Running command", "#3dc200")
browser.tabs.query({
active: true,
lastFocusedWindow: true
}, function (tabs) {
var url = tabs[0].url;
var port = browser.runtime.connectNative("com.mpvnet.loader");
port.onMessage.addListener(function (msg) {
if (msg.text == "return_normal") {
updateStatus("Ready", "#3dc200")
}
if (msg.text == "return_error_invalid_url") {
updateStatus("Invalid URL", "#ff455e");
}
port.disconnect();
return;
});
port.onDisconnect.addListener(function() {
updateStatus("Internal loader error", "#ff455e");
return;
});
port.postMessage({ text: cmdline + url });
});
}
function fitResolution () {
if (inputResolution.value != "") {
if (isNaN(inputResolution.value) || inputResolution.value < 1) {
updateStatus("Invalid resolution limit", "#ff455e");
return null;
}
return `[height<=${inputResolution.value}]`
}
return "";
}
btnFitResoultion.addEventListener("click", () => {
var hReal = Math.round(window.devicePixelRatio * screen.height);
inputResolution.value = hReal;
updateStatus("Display resolution read", "#3dc200")
});
btnVideoPlay.addEventListener("click", () => {
var hLimit = fitResolution();
if (hLimit === null) return;
var cmdline = `mpv video bv${hLimit}+ba/b${hLimit} `;
runLoader(cmdline);
});
btnAudioPlay.addEventListener("click", () => {
var cmdline = "mpv audio ba/b ";
runLoader(cmdline);
});
btnVideoDownload.addEventListener("click", () => {
var hLimit = fitResolution();
if (hLimit === null) return;
var cmdline = `ydl video bv${hLimit}+ba/b${hLimit} `;
runLoader(cmdline);
});
btnAudioDownload.addEventListener("click", () => {
var cmdline = "ydl audio ba/b ";
runLoader(cmdline);
});
updateStatus("Ready", "#3dc200")