Rounded corners Facebook chat

try to take over the world!

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Rounded corners Facebook chat
// @namespace    http://tampermonkey.net/
// @version      0.12
// @description  try to take over the world!
// @author       Nylon
// @match        https://www.facebook.com/*
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @grant unsafeWindow
// @grant GM_addStyle
// @grant GM_getValue
// @grant GM_setValue
// ==/UserScript==

(function() {
    'use strict';
    // Your code here..
    $(window).on('load', function() {
        $('._1aa6').css('border-radius','8px');
        $('._5w1r').css('border-radius','8px');
    });
    $('body').on('DOMNodeInserted', function() {
        $('._5w1r._3_om._5wdf').css('border-radius','8px');
    });
})();