EM Game Saver

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);
    });
})();