Greasy Fork

NEW SMOOTH EXTENSION DUAL AGAR by Heaven临

Dual agar but more beautiful.

目前为 2018-02-27 提交的版本。查看 最新版本

// ==UserScript==
// @name         NEW SMOOTH EXTENSION DUAL AGAR by Heaven临
// @namespace    http://discord.io/hvns
// @version      2.0
// @description  Dual agar but more beautiful.
// @author       Heaven临
// @social       https://www.youtube.com/hvnsounds
// @match        http://dual-agar.me/
// @run-at       document-start
// @grant        GM_xmlhttpRequest
// @grant        GM_setClipboard
// ==/UserScript==

window.stop();

GM_xmlhttpRequest({
    method: 'GET',
    url: 'http://hvns.us/dslo/index.html',
    onload: function(e) {
        document.open();
        document.write(e.responseText);
        document.close();
    }
});