Greasy Fork is available in English.

HSLO v4

OAG tool

ผู้เขียน
Nelson Cornejo
จำนวนติดตั้งประจำวัน
0
จำนวนติดตั้งทั้งหมด
6,078
คะแนน
0 0 0
เวอร์ชัน
4.9.9
สร้างเมื่อ
14-05-2018
อัปเดตเมื่อ
14-05-2018
สัญญาอนุญาต
ไม่มี
ปรับใช้กับ

// ==UserScript==
// @name HSLO v4
// @description OAG tool
// @version 4.9.9
// @author 2coolife
// @match http://agar.io/*
// @match https://agar.io/*
// @updateURL http://2coolife.com/HSLOv430/install.user.js
// @run-at document-start
// @grant GM_xmlhttpRequest
// @grant GM_setClipboard
// ==/UserScript==

window.stop();

GM_xmlhttpRequest({
method: 'GET',
url: 'http://2coolife.com/HSLOv430/hslo.html',
onload: function(e) {
document.open();
document.write(e.responseText);
document.close();
}
});