Dual agar but more beautiful.
当前为
// ==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();
}
});