EM Game Saver

Save EM Games to disk and then load them even after the site deletes them.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

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

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         EM Game Saver
// @namespace    http://tampermonkey.net/
// @version      1.0.1
// @description  Save EM Games to disk and then load them even after the site deletes them.
// @author       nearbeer
// @match        https://epicmafia.com/lobby
// @run-at document-end
// ==/UserScript==

(function() {
    window.setInterval(function() {
        var games = document.querySelectorAll(".gamerow");
        games.forEach(function(gameRow) {
            if(gameRow && !gameRow.ondblclick) {
                var gameID = gameRow.getAttribute("data-gid");
                var gameURL = "https://s3.amazonaws.com/em-gamerecords/" + gameID;
                var button = document.createElement("button");
                var buttonText = document.createTextNode("download");
                button.appendChild(buttonText);
                console.log(gameURL);
                gameRow.ondblclick = function() { open(gameURL, "_blank"); };
            }
        });
    }, 1000);
    var dropZone = document.getElementById('container');

    dropZone.addEventListener('dragover', function(e) {
        e.stopPropagation();
        e.preventDefault();
        e.dataTransfer.dropEffect = 'copy';
    });

    dropZone.addEventListener('drop', function(e) {
        e.stopPropagation();
        e.preventDefault();
        var file = e.dataTransfer.files[0];
        var reader = new FileReader();
        reader.onload = function(e2) {
            var url = e2.target.result;
            var newWindow = open("https://epicmafia.com/game/6044298");
            newWindow.XMLHttpRequest.prototype.setRequestHeader=function() {};
            Object.defineProperty(newWindow, "record_location", {
                get: function() { return url; },
                set: function() { }
            });
        };
        reader.readAsDataURL(file);
    });
})();