Automatically read full article

19/05/2025, 13.47.01

// ==UserScript==
// @name        Automatically read full article
// @namespace   https://doubly.so/user-scripts
// @match       https://www.realclearscience.com/*
// @match       https://www.realclearpolitics.com/*
// @match       https://www.realclearpolicy.com/*
// @match       https://www.realcleardefence.com/*
// @match       https://www.realclearworld.com/*
// @grant       none
// @version     1.0
// @author      Devin Bayer <[email protected]>
// @license     MIT
// @description 19/05/2025, 13.47.01
// ==/UserScript==

$ = (q) => document.querySelector(q)

if (! window.location.hash) {
  console.info('user script - auto read')
  window.location.hash = 'auto-read-full'
  $('.more-link a').click()
} else {
  console.log('user script - skipping auto read due to reload / back button')
}