mobizen web app

try to take over the world!

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         mobizen web app
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       You
// @match        *www.mobizen.com/*
// @icon         https://www.google.com/s2/favicons?domain=www.mobizen.com
// @grant        none
// ==/UserScript==

if (window.location.href.search("/home") == -1) {

    function main() {
        var a = $("div.display-email");
        if (a.length == 0) {
            return;
        }
        clearInterval(loop);
        setTimeout(function() {
            a = a.text();
            if (a == "") {
                loop = setInterval(login, 100);
            } else {
                loop = setInterval(select_host, 100);
            }
        }, 100);
    }

    function login() {
        var e = $("#signin-button");
        if (e.length == 1) {
            clearInterval(loop);
            setTimeout(function() {
                e.click();
                loop = setInterval(select_host, 100);
            }, 1000);
        }
    }

    function select_host() {
        //$("#mobizen-main > div.block-connect > div > label").click();
        var e = $("#mobizen-main > div.device-list > div.devicelist-button.hostlist");
        if (e.length == 1) {
            clearInterval(loop);
            setTimeout(function() {
                e.click();
                //loop = setInterval(select_host, 100);
            }, 100);
        }
    }

    var css = `
#select-device {
z-index: 100;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0;
margin-left: -60px;
}
`.replace(/;/g, " !important;");
    var style = document.createElement('style');
    style.innerHTML = css;
    document.getElementsByTagName('body')[0].appendChild(style);

    var loop = setInterval(main, 100);

} else {

    var css = `
#contents {
top: 0;
}
#dialog {
left: 200px;
}
#apps,#widget,#header,#footer {
display: none;
}
.device-button {
border: 1px solid white;
}
#device [data-role="DEVICE_BODY"] {
left: 0%;
}
`.replace(/;/g, " !important;");
    var style = document.createElement('style');
    style.innerHTML = css;
    document.getElementsByTagName('body')[0].appendChild(style);

    function set_canvas() {
        var e = $(".d-default_screen");
        if (e.length == 0 || e.width() == 0 || e.height() == 0) {
            return;
        }
        clearInterval(loop);
        var width = e.width(), height = e.height();
        var css = `
#contents .remote {
margin: unset;
width: ${width}px;
height: ${height}px;
}
#device {
transform: unset;
width: ${width}px;
height: ${height}px;
left: 47%;
}
#rswp {
width: ${width}px;
height: ${height}px;
margin-left: 0;
margin-top: 0;
transform: unset;
}
#rswp > canvas {
width: ${width}px;
height: ${height}px;
}
.d-default_screen {
width: ${width}px;
height: ${height}px;
}
`.replace(/;/g, " !important;");
        var style = document.createElement('style');
        style.innerHTML = css;
        document.getElementsByTagName('body')[0].appendChild(style);
    }

    var loop = setInterval(set_canvas, 100);

}