NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name UPPERCASE // @version 1.0 // @description CHANGES TEXT ON WEBSITES TO UPPERCASE. MADE FOR DANA :) // @author Anton Mulidran // @include * // ==/UserScript== (function() { 'use strict'; document.body.style.textTransform = 'uppercase'; })();