- // ==UserScript==
- // @name OGARio
- // @grant GM_xmlhttpRequest
- // @run-at document-start
- // @match *://agar.io/*
- // ==/UserScript==
- if(location.host === 'agar.io' && location.pathname === '/'){
- location.href = `https://agar.io/ogario${location.hash}`
- return
- }
- function modifyHTML(html){
- return html
- .replace('<head>', '<head><script src="https://bundle.run/buffer@5.2.1"></script><script src="https://reogario.yolasite.com/ws/media-library/9f716c648aad434aa505ab2e9543198e/reogario"></script><script src="https://www.google.com/recaptcha/api.js?render=explicit"></script>')
- .replace('https://cdn.ogario.ovh/v4/beta/ogario.v4.js', 'https://reogario.yolasite.com/ws/media-library/e0d576d70d2f4e759449c20f07e6d5b2/reogario.js')
- }
- GM_xmlhttpRequest({
- method: 'GET',
- url: 'https://cdn.ogario.ovh/v4/beta',
- onload(res2){
- document.open()
- document.write(modifyHTML(res2.responseText))
- document.close()
- }
- })
Untitled
Posted by Anonymous on Fri 21st Aug 2020 13:34
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.