Greasy Fork is available in English.

Agar.io Talky Chat Button

Adds a button to connect to Talky chat on Agar.io

// ==UserScript==
// @name         Agar.io Talky Chat Button
// @namespace    agar-talky-chat-button
// @version      1
// @description  Adds a button to connect to Talky chat on Agar.io
// @author       New Jack 🕹️
// @match        https://agar.io/*
// @grant        none
// @license MIT
// ==/UserScript==

// Add Talky Chat button
var talkyBtn = $('<button>').attr({
    id: 'talkyBtn',
    class: 'btn btn-info'
}).css({
    position: 'absolute',
    bottom: '10px',
    right: '10px',
    'z-index': '9999',
    'font-size': '20px',
    'padding': '10px 20px'
});

var talkyBtnText = $('<span>').text('Connect to Talky.io');
talkyBtn.append(talkyBtnText);

talkyBtn.click(function() {
    window.open('https://talky.io/', '_blank');
});

$('body').append(talkyBtn);