-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtamper_monkey_script.js
55 lines (51 loc) · 1.46 KB
/
tamper_monkey_script.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
// ==UserScript==
// @name OSPL
// @namespace http://tampermonkey.net/
// @require http://code.jquery.com/jquery-latest.js
// @match https://www.oipulse.com/app/advance-chart
// @Version 1
// @grant none
// ==/UserScript==
(() => {
let interval;
$(document).ready(function(){
const btn = document.createElement("Button");
btn.innerHTML = "Start";
btn.id = "ospl";
btn.style.position = "absolute";
btn.style.top = 0;
btn.style.left = 0;
btn.style.zIndex = 1000;
btn.onclick = function() {
if (interval) {
console.log("cancelling interval");
clearInterval(interval);
interval = null;
$("#ospl").html("Start");
return;
}
$("#ospl").html("Stop");
interval = setInterval(callback, 4000)
}
document.body.appendChild(btn);
})
})()
function callback() {
const i = $("iframe");
let imageDataUrl;
if (i) {
imageDataUrl = i[0].contentWindow.document.getElementsByTagName("canvas")[0].toDataURL();
}
else {
const canvas = $("canvas");
if (canvas) {
imageDataUrl = canvas[0].toDataURL();
}
}
if (imageDataUrl) {
var a = document.createElement("a");
a.href = "data:text," + imageDataUrl; //content
a.download = "ospl_image.txt"; //file name
a.click();
}
}