Automatically read full article

19/05/2025, 13.47.01

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==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')
}