javascript:Array.from(document.getElementsByTagName("strong")).forEach(strong => strong.style = "font-weight: normal;")
Safari will refuse and give an error pop up. Chrome will remove “javascript:” from the beginning if you paste, to prevent users from accidentally running arbitrary JS. You can type it back in by hand, and then it will work.