NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bumble readable text // @namespace http://tampermonkey.net/ // @version 0.1 // @description make text readable // @author Tom V // @license MIT // @match https://bumble.com/app/connections // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; const css = '.message--in .message-bubble { color: #000 !important }'; GM_addStyle(css); })();