Hide key points on PsychologyToday to prevent a lazy approach to reading.
// ==UserScript==// @name Hide key points on PsychologyToday// @namespace StephenP// @match https://www.psychologytoday.com/*// @grant none// @license copyleft// @version 1.0// @author StephenP// @description Hide key points on PsychologyToday to prevent a lazy approach to reading.// ==/UserScript==let stl=document.createElement("STYLE");stl.innerHTML=".blog_entry__key-points{display: none}"document.body.appendChild(stl);