Make Twitter edgy again

A fix for buttons and profile pictures.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Make Twitter edgy again
// @namespace    http://twitter.com/pleximon
// @version      0.3
// @description  A fix for buttons and profile pictures.
// @author       Pleximon
// @match        twitter.com/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    $('*').css({borderRadius:'0%'});
})();