Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function run(){
- //================USTAWIENIA==================//
- //
- var oprocentowanie = 0.8;
- //
- //============================================//
- myDocument = document.getElementsByClassName('b-overlay-wrap position-relative')[1].children[2];
- let mojewpisy = [];
- let mojewpisy2 = [];
- for(let i=0;i < myDocument.childElementCount;i++){
- node = myDocument.children[i];
- for(let j=0;j < node.childElementCount;j++){
- node2 = node.children[j];
- if(node2.innerHTML.includes("MoneyMaker")){
- mojewpisy.push(node2.innerHTML);
- }
- if(node2.innerHTML.includes("Wypłacono")){
- mojewpisy2.push(node2.innerHTML);
- }
- for(let k=0;k < node2.childElementCount;k++){
- node3 = node2.children[k].innerHTML;
- if(node3.includes("MoneyMaker")){
- mojewpisy.push(node3.innerHTML);
- }
- if(node3.includes("Wypłacono")){
- mojewpisy2.push(node3.innerHTML);
- }
- }
- }
- }
- var jakes = 0;
- var mateusz12391 = 0;
- var wyplatajakes = 0;
- var wyplatamateusz12391 = 0;
- console.log(mojewpisy.length);
- for(let i=0; i < mojewpisy.length ;i++){
- var wpis = mojewpisy[i];
- var poczatek = 0;
- var koniec = 0;
- var kwota = 0;
- if(wpis && wpis.indexOf('$') !== -1){
- var poczatek = wpis.indexOf('$');
- }
- if(wpis && wpis.indexOf(' ') !== -1){
- var koniec = wpis.indexOf(' ',poczatek);
- }
- if(poczatek !=0 && koniec != 0){
- var kwota = wpis.substring(poczatek+1,koniec);
- }
- if(wpis != null && wpis.includes("Jakes")){
- jakes+=parseInt(kwota,10);
- }
- if(wpis != null && wpis.includes("mateusz123_91")){
- mateusz12391+=parseInt(kwota,10);
- }
- }
- for(let i=0; i < mojewpisy2.length ;i++){
- var wpis = mojewpisy2[i];
- var poczatek = 0;
- var koniec = 0;
- var kwota = 0;
- if(wpis && wpis.indexOf('$') !== -1){
- var poczatek = wpis.indexOf('$');
- }
- if(wpis && wpis.indexOf(' ') !== -1){
- var koniec = wpis.indexOf(' ',poczatek);
- }
- if(poczatek !=0 && koniec != 0){
- var kwota = wpis.substring(poczatek+1,koniec);
- }
- if(wpis != null && wpis.includes("Jakes")){
- wyplatajakes+=parseInt(kwota,10);
- }
- if(wpis != null && wpis.includes("mateusz123_91")){
- wyplatamateusz12391+=parseInt(kwota,10);
- }
- }
- //wyrównanie
- wyplatajakes+=15000;
- wyplatamateusz12391-=15000;
- mateusz12391+=50000;
- console.log("Jakes zarobił: " + jakes + " i wypłacił: " + wyplatajakes);
- console.log("Wypłata Jakes: " + ((jakes * oprocentowanie) - wyplatajakes ));
- console.log("Mateusz zarobił: " + mateusz12391 + " i wypłacił: " + wyplatamateusz12391);
- console.log("Wypłata Mateusz: " + ((mateusz12391 * oprocentowanie) - wyplatamateusz12391));
- alerttext = "Jakes zarobił: " + jakes + " i wypłacił: " + wyplatajakes + "\n";
- alerttext+= "Wypłata Jakes: " + ((jakes * oprocentowanie) - wyplatajakes ) + "\n";
- alerttext+= "Mateusz zarobił: " + mateusz12391 + " i wypłacił: " + wyplatamateusz12391 + "\n";
- alerttext+= "Wypłata Mateusz: " + ((mateusz12391 * oprocentowanie) - wyplatamateusz12391);
- alert(alerttext);
- }
- function dodaj_przycisk(){
- const pasek = document.getElementsByClassName("tabs");
- let przycisk = document.createElement("button");
- przycisk.innerText="Oblicz Pensje";
- przycisk.id = "oblicz";
- przycisk.onclick = zmienKarte;
- przycisk.className = "btn btn-primary shadow_box tabs mb-1";
- pasek[0].appendChild(przycisk);
- }
- function zmienKarte(){
- przycisklogi = document.getElementById("oblicz").previousSibling;
- przycisklogi.click();
- document.getElementsByClassName("btn btn-primary")[6].click();
- window.setTimeout(run, 2000);
- }
- let stateCheck = setInterval(() => {
- if (document.readyState === 'complete') {
- clearInterval(stateCheck);
- dodaj_przycisk();
- }
- }, 1500);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement