Hide key points on PsychologyToday

Hide key points on PsychologyToday to prevent a lazy approach to reading.

  1. // ==UserScript==
  2. // @name Hide key points on PsychologyToday
  3. // @namespace StephenP
  4. // @match https://www.psychologytoday.com/*
  5. // @grant none
  6. // @license copyleft
  7. // @version 1.0
  8. // @author StephenP
  9. // @description Hide key points on PsychologyToday to prevent a lazy approach to reading.
  10. // ==/UserScript==
  11. let stl=document.createElement("STYLE");
  12. stl.innerHTML=".blog_entry__key-points{display: none}"
  13. document.body.appendChild(stl);