2022-06-05

Original bookmarklet from here: https://www.arp242.net/bookmarklets.html.

            
                javascript:(function() {
                    document.querySelectorAll('p, li, div').forEach(function(n) {
                        n.style.color = '#000';
                        n.style.font = '500 32px/1.7em sans-serif';
                        n.style.maxWidth = '30em';
                        n.style.marginLeft = 'auto';
                        n.style.marginRight = 'auto';
                    });
                })();
            
        

Original bookmarklet adjusts font size, color. Modified to increase font size, set a max width, and center text on page.